From 2e7faaba769ece77298cd74d3da37b84aa175e54 Mon Sep 17 00:00:00 2001 From: Sweekriti Satpathy Date: Tue, 15 Nov 2022 14:48:15 -0800 Subject: [PATCH] ua pass --- .../PlantLady.Android/MainApplication.cs | 19 + .../PlantLady.Android.csproj | 105 +- PlantLady/PlantLady.UWP/App.xaml.cs | 113 +- PlantLady/PlantLady.UWP/App.xaml.old.cs | 106 + PlantLady/PlantLady.UWP/MainPage.xaml.cs | 16 +- PlantLady/PlantLady.UWP/MainWindow.xaml | 43 + PlantLady/PlantLady.UWP/MainWindow.xaml.cs | 153 + PlantLady/PlantLady.UWP/Package.appxmanifest | 35 +- PlantLady/PlantLady.UWP/PlantLady.UWP.csproj | 96 +- .../PlantLady.UWP/Properties/AssemblyInfo.cs | 29 - .../Properties/launchSettings.json | 10 + .../UWPToWinAppSDKUpgradeHelpers.cs | 19 + PlantLady/PlantLady.UWP/app.manifest | 15 + PlantLady/PlantLady.iOS/PlantLady.iOS.csproj | 134 +- PlantLady/PlantLady/App.xaml | 2 +- PlantLady/PlantLady/App.xaml.cs | 4 +- PlantLady/PlantLady/AppShell.xaml | 2 +- PlantLady/PlantLady/AppShell.xaml.cs | 5 +- PlantLady/PlantLady/AssemblyInfo.cs | 4 +- PlantLady/PlantLady/MauiProgram.cs | 14 + PlantLady/PlantLady/PlantLady.csproj | 27 +- PlantLady/PlantLady/Views/HomePage.xaml | 2 +- PlantLady/PlantLady/Views/HomePage.xaml.cs | 3 +- PlantLady/PlantLady/Views/PlantsPage.xaml | 2 +- PlantLady/PlantLady/Views/PlantsPage.xaml.cs | 5 +- UpgradeReport.sarif | 1786 ++ upgrade-assistant.clef | 16979 ++++++++++++++++ 27 files changed, 19273 insertions(+), 455 deletions(-) create mode 100644 PlantLady/PlantLady.Android/MainApplication.cs create mode 100644 PlantLady/PlantLady.UWP/App.xaml.old.cs create mode 100644 PlantLady/PlantLady.UWP/MainWindow.xaml create mode 100644 PlantLady/PlantLady.UWP/MainWindow.xaml.cs delete mode 100644 PlantLady/PlantLady.UWP/Properties/AssemblyInfo.cs create mode 100644 PlantLady/PlantLady.UWP/Properties/launchSettings.json create mode 100644 PlantLady/PlantLady.UWP/UWPToWinAppSDKUpgradeHelpers.cs create mode 100644 PlantLady/PlantLady.UWP/app.manifest create mode 100644 PlantLady/PlantLady/MauiProgram.cs create mode 100644 UpgradeReport.sarif create mode 100644 upgrade-assistant.clef diff --git a/PlantLady/PlantLady.Android/MainApplication.cs b/PlantLady/PlantLady.Android/MainApplication.cs new file mode 100644 index 0000000..4ff31c9 --- /dev/null +++ b/PlantLady/PlantLady.Android/MainApplication.cs @@ -0,0 +1,19 @@ +using System; +using Android.App; +using Android.Runtime; +using Microsoft.Maui; +using Microsoft.Maui.Hosting; + +namespace PlantLady.Android +{ + [Application] + public class MainApplication : MauiApplication + { + public MainApplication(IntPtr handle, JniHandleOwnership ownership) + : base(handle, ownership) + { + } + + protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); + } +} diff --git a/PlantLady/PlantLady.Android/PlantLady.Android.csproj b/PlantLady/PlantLady.Android/PlantLady.Android.csproj index 14ff6c1..c348075 100644 --- a/PlantLady/PlantLady.Android/PlantLady.Android.csproj +++ b/PlantLady/PlantLady.Android/PlantLady.Android.csproj @@ -1,104 +1,23 @@ - - + - Debug - AnyCPU - {91D882E4-B049-4F66-9B2C-6AD42966217E} - {EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - {c9e5eea5-ca05-42a1-839b-61506e0a37df} - Library - PlantLady.Droid - PlantLady.Android - True - True - Resources\Resource.designer.cs - Resource - Properties\AndroidManifest.xml - Resources - Assets - false - v10.0 - true - true - Xamarin.Android.Net.AndroidClientHandler - - + Exe + enable + true - - true - portable - false - bin\Debug - DEBUG; - prompt - 4 - None - - - true - portable - true - bin\Release - prompt - 4 - true - false + + net7.0-android - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - {EA278C7F-74CB-4DD9-9407-D2FB485A7932} - PlantLady - - - - - - + + + all + + \ No newline at end of file diff --git a/PlantLady/PlantLady.UWP/App.xaml.cs b/PlantLady/PlantLady.UWP/App.xaml.cs index 303f465..2ccb235 100644 --- a/PlantLady/PlantLady.UWP/App.xaml.cs +++ b/PlantLady/PlantLady.UWP/App.xaml.cs @@ -1,4 +1,13 @@ -using System; +using Microsoft.UI.Xaml; +using Microsoft.UI.Xaml.Controls; +using Microsoft.UI.Xaml.Controls.Primitives; +using Microsoft.UI.Xaml.Data; +using Microsoft.UI.Xaml.Input; +using Microsoft.UI.Xaml.Media; +using Microsoft.UI.Xaml.Navigation; +using Microsoft.UI.Xaml.Shapes; +using Microsoft.Windows.AppLifecycle; +using System; using System.Collections.Generic; using System.IO; using System.Linq; @@ -7,20 +16,17 @@ using Windows.ApplicationModel.Activation; using Windows.Foundation; using Windows.Foundation.Collections; -using Windows.UI.Xaml; -using Windows.UI.Xaml.Controls; -using Windows.UI.Xaml.Controls.Primitives; -using Windows.UI.Xaml.Data; -using Windows.UI.Xaml.Input; -using Windows.UI.Xaml.Media; -using Windows.UI.Xaml.Navigation; +using PlantLady.UWP; -namespace PlantLady.UWP +// To learn more about WinUI, the WinUI project structure, +// and more about our project templates, see: http://aka.ms/winui-project-info. + +namespace PlantLady { /// /// Provides application-specific behavior to supplement the default Application class. /// - sealed partial class App : Application + public partial class App : Application { /// /// Initializes the singleton application object. This is the first line of authored code @@ -29,78 +35,55 @@ sealed partial class App : Application public App() { this.InitializeComponent(); - this.Suspending += OnSuspending; } /// /// Invoked when the application is launched normally by the end user. Other entry points /// will be used such as when the application is launched to open a specific file. /// - /// Details about the launch request and process. - protected override void OnLaunched(LaunchActivatedEventArgs e) + /// Details about the launch request and process. + protected override async void OnLaunched(Microsoft.UI.Xaml.LaunchActivatedEventArgs e) { -#if DEBUG - if (System.Diagnostics.Debugger.IsAttached) - { - this.DebugSettings.EnableFrameRateCounter = true; - } -#endif - - Frame rootFrame = Window.Current.Content as Frame; + // TODO This code defaults the app to a single instance app. If you need multi instance app, remove this part. + // Read: https://docs.microsoft.com/en-us/windows/apps/windows-app-sdk/migrate-to-windows-app-sdk/guides/applifecycle#single-instancing-in-applicationonlaunched + // If this is the first instance launched, then register it as the "main" instance. + // If this isn't the first instance launched, then "main" will already be registered, + // so retrieve it. + var mainInstance = Microsoft.Windows.AppLifecycle.AppInstance.FindOrRegisterForKey("main"); + var activatedEventArgs = Microsoft.Windows.AppLifecycle.AppInstance.GetCurrent().GetActivatedEventArgs(); - // Do not repeat app initialization when the Window already has content, - // just ensure that the window is active - if (rootFrame == null) + // If the instance that's executing the OnLaunched handler right now + // isn't the "main" instance. + if (!mainInstance.IsCurrent) { - // Create a Frame to act as the navigation context and navigate to the first page - rootFrame = new Frame(); - - rootFrame.NavigationFailed += OnNavigationFailed; - global::Xamarin.Forms.Forms.SetFlags("Shell_UWP_Experimental"); - Xamarin.Forms.Forms.Init(e); - - if (e.PreviousExecutionState == ApplicationExecutionState.Terminated) - { - //TODO: Load state from previously suspended application - } - - // Place the frame in the current Window - Window.Current.Content = rootFrame; + // Redirect the activation (and args) to the "main" instance, and exit. + await mainInstance.RedirectActivationToAsync(activatedEventArgs); + System.Diagnostics.Process.GetCurrentProcess().Kill(); + return; } - if (rootFrame.Content == null) + // TODO This code handles app activation types. Add any other activation kinds you want to handle. + // Read: https://docs.microsoft.com/en-us/windows/apps/windows-app-sdk/migrate-to-windows-app-sdk/guides/applifecycle#file-type-association + if (activatedEventArgs.Kind == ExtendedActivationKind.File) { - // When the navigation stack isn't restored navigate to the first page, - // configuring the new page by passing required information as a navigation - // parameter - rootFrame.Navigate(typeof(MainPage), e.Arguments); + OnFileActivated(activatedEventArgs); } - // Ensure the current window is active - Window.Current.Activate(); - } - /// - /// Invoked when Navigation to a certain page fails - /// - /// The Frame which failed navigation - /// Details about the navigation failure - void OnNavigationFailed(object sender, NavigationFailedEventArgs e) - { - throw new Exception("Failed to load Page " + e.SourcePageType.FullName); + // Initialize MainWindow here + Window = new MainWindow(); + Window.Activate(); + WindowHandle = WinRT.Interop.WindowNative.GetWindowHandle(Window); } - /// - /// Invoked when application execution is being suspended. Application state is saved - /// without knowing whether the application will be terminated or resumed with the contents - /// of memory still intact. - /// - /// The source of the suspend request. - /// Details about the suspend request. - private void OnSuspending(object sender, SuspendingEventArgs e) + // TODO This is an example method for the case when app is activated through a file. + // Feel free to remove this if you do not need this. + public void OnFileActivated(AppActivationArguments activatedEventArgs) { - var deferral = e.SuspendingOperation.GetDeferral(); - //TODO: Save application state and stop any background activity - deferral.Complete(); + } + + public static MainWindow Window { get; private set; } + + public static IntPtr WindowHandle { get; private set; } } } diff --git a/PlantLady/PlantLady.UWP/App.xaml.old.cs b/PlantLady/PlantLady.UWP/App.xaml.old.cs new file mode 100644 index 0000000..53e28aa --- /dev/null +++ b/PlantLady/PlantLady.UWP/App.xaml.old.cs @@ -0,0 +1,106 @@ +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Runtime.InteropServices.WindowsRuntime; +using Windows.ApplicationModel; +using Windows.ApplicationModel.Activation; +using Windows.Foundation; +using Windows.Foundation.Collections; +using Microsoft.UI.Xaml; +using Microsoft.UI.Xaml.Controls; +using Microsoft.UI.Xaml.Controls.Primitives; +using Microsoft.UI.Xaml.Data; +using Microsoft.UI.Xaml.Input; +using Microsoft.UI.Xaml.Media; +using Microsoft.UI.Xaml.Navigation; + +namespace PlantLady.UWP +{ + /// + /// Provides application-specific behavior to supplement the default Application class. + /// + sealed partial class App : Application + { + /// + /// Initializes the singleton application object. This is the first line of authored code + /// executed, and as such is the logical equivalent of main() or WinMain(). + /// + public App() + { + this.InitializeComponent(); + this.Suspending += OnSuspending; + } + + /// + /// Invoked when the application is launched normally by the end user. Other entry points + /// will be used such as when the application is launched to open a specific file. + /// + /// Details about the launch request and process. + protected override void OnLaunched(LaunchActivatedEventArgs e) + { +#if DEBUG + if (System.Diagnostics.Debugger.IsAttached) + { + this.DebugSettings.EnableFrameRateCounter = true; + } +#endif + + Frame rootFrame = App.Window.Content as Frame; + + // Do not repeat app initialization when the Window already has content, + // just ensure that the window is active + if (rootFrame == null) + { + // Create a Frame to act as the navigation context and navigate to the first page + rootFrame = new Frame(); + + rootFrame.NavigationFailed += OnNavigationFailed; + global::Xamarin.Forms.Forms.SetFlags("Shell_UWP_Experimental"); + Xamarin.Forms.Forms.Init(e); + + if (e.PreviousExecutionState == ApplicationExecutionState.Terminated) + { + //TODO: Load state from previously suspended application + } + + // Place the frame in the current Window + App.Window.Content = rootFrame; + } + + if (rootFrame.Content == null) + { + // When the navigation stack isn't restored navigate to the first page, + // configuring the new page by passing required information as a navigation + // parameter + rootFrame.Navigate(typeof(MainPage), e.Arguments); + } + // Ensure the current window is active + App.Window.Activate(); + } + + /// + /// Invoked when Navigation to a certain page fails + /// + /// The Frame which failed navigation + /// Details about the navigation failure + void OnNavigationFailed(object sender, NavigationFailedEventArgs e) + { + throw new Exception("Failed to load Page " + e.SourcePageType.FullName); + } + + /// + /// Invoked when application execution is being suspended. Application state is saved + /// without knowing whether the application will be terminated or resumed with the contents + /// of memory still intact. + /// + /// The source of the suspend request. + /// Details about the suspend request. + private void OnSuspending(object sender, SuspendingEventArgs e) + { + var deferral = e.SuspendingOperation.GetDeferral(); + //TODO: Save application state and stop any background activity + deferral.Complete(); + } + } +} diff --git a/PlantLady/PlantLady.UWP/MainPage.xaml.cs b/PlantLady/PlantLady.UWP/MainPage.xaml.cs index 405c02e..3a93074 100644 --- a/PlantLady/PlantLady.UWP/MainPage.xaml.cs +++ b/PlantLady/PlantLady.UWP/MainPage.xaml.cs @@ -1,17 +1,17 @@ -using System; +using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Runtime.InteropServices.WindowsRuntime; using Windows.Foundation; using Windows.Foundation.Collections; -using Windows.UI.Xaml; -using Windows.UI.Xaml.Controls; -using Windows.UI.Xaml.Controls.Primitives; -using Windows.UI.Xaml.Data; -using Windows.UI.Xaml.Input; -using Windows.UI.Xaml.Media; -using Windows.UI.Xaml.Navigation; +using Microsoft.UI.Xaml; +using Microsoft.UI.Xaml.Controls; +using Microsoft.UI.Xaml.Controls.Primitives; +using Microsoft.UI.Xaml.Data; +using Microsoft.UI.Xaml.Input; +using Microsoft.UI.Xaml.Media; +using Microsoft.UI.Xaml.Navigation; namespace PlantLady.UWP { diff --git a/PlantLady/PlantLady.UWP/MainWindow.xaml b/PlantLady/PlantLady.UWP/MainWindow.xaml new file mode 100644 index 0000000..b182d6f --- /dev/null +++ b/PlantLady/PlantLady.UWP/MainWindow.xaml @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PlantLady/PlantLady.UWP/MainWindow.xaml.cs b/PlantLady/PlantLady.UWP/MainWindow.xaml.cs new file mode 100644 index 0000000..5ca9130 --- /dev/null +++ b/PlantLady/PlantLady.UWP/MainWindow.xaml.cs @@ -0,0 +1,153 @@ +using Microsoft.UI; +using Microsoft.UI.Windowing; +using Microsoft.UI.Xaml; +using Microsoft.UI.Xaml.Controls; +using Microsoft.UI.Xaml.Controls.Primitives; +using Microsoft.UI.Xaml.Data; +using Microsoft.UI.Xaml.Input; +using Microsoft.UI.Xaml.Media; +using Microsoft.UI.Xaml.Navigation; +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Runtime.InteropServices; +using System.Runtime.InteropServices.WindowsRuntime; +using Windows.Foundation; +using Windows.Foundation.Collections; +using WinRT.Interop; + +// To learn more about WinUI, the WinUI project structure, +// and more about our project templates, see: http://aka.ms/winui-project-info. + +namespace PlantLady.UWP +{ + /// + /// An empty window that can be used on its own or navigated to within a Frame. + /// + public sealed partial class MainWindow : Window + { + AppWindow m_AppWindow; + + public MainWindow() + { + this.InitializeComponent(); + + m_AppWindow = GetAppWindowForCurrentWindow(); + + // Check to see if customization is supported. + // Currently only supported on Windows 11. + if (AppWindowTitleBar.IsCustomizationSupported()) + { + var titleBar = m_AppWindow.TitleBar; + titleBar.ExtendsContentIntoTitleBar = true; + AppTitleBar.Loaded += AppTitleBar_Loaded; + AppTitleBar.SizeChanged += AppTitleBar_SizeChanged; + + BackButton.Click += OnBackClicked; + BackButton.Visibility = Visibility.Collapsed; + } + else + { + // Title bar customization using these APIs is currently + // supported only on Windows 11. In other cases, hide + // the custom title bar element. + // AppTitleBar.Visibility = Visibility.Collapsed; + // TODO Show alternative UI for any functionality in + // the title bar, such as the back button, if used + } + } + + public Button BackButton => AppTitleBarBackButton; + + private void AppTitleBar_Loaded(object sender, RoutedEventArgs e) + { + SetTitleBar(AppTitleBar); + // TODO Raname MainPage in case your app Main Page has a different name + PageFrame.Navigate(typeof(MainPage)); + if (AppWindowTitleBar.IsCustomizationSupported()) + { + SetDragRegionForCustomTitleBar(m_AppWindow); + } + } + + private void OnBackClicked(object sender, RoutedEventArgs e) + { + if (PageFrame.CanGoBack) + { + PageFrame.GoBack(); + } + } + + private void AppTitleBar_SizeChanged(object sender, SizeChangedEventArgs e) + { + if (AppWindowTitleBar.IsCustomizationSupported() + && m_AppWindow.TitleBar.ExtendsContentIntoTitleBar) + { + // Update drag region if the size of the title bar changes. + SetDragRegionForCustomTitleBar(m_AppWindow); + } + } + + private AppWindow GetAppWindowForCurrentWindow() + { + IntPtr hWnd = WindowNative.GetWindowHandle(this); + WindowId wndId = Microsoft.UI.Win32Interop.GetWindowIdFromWindow(hWnd); + return AppWindow.GetFromWindowId(wndId); + } + + private void SetDragRegionForCustomTitleBar(AppWindow appWindow) + { + if (AppWindowTitleBar.IsCustomizationSupported() + && appWindow.TitleBar.ExtendsContentIntoTitleBar) + { + double scaleAdjustment = GetScaleAdjustment(); + + RightPaddingColumn.Width = new GridLength(appWindow.TitleBar.RightInset / scaleAdjustment); + LeftPaddingColumn.Width = new GridLength(appWindow.TitleBar.LeftInset / scaleAdjustment); + + List dragRectsList = new(); + + Windows.Graphics.RectInt32 dragRectL; + dragRectL.X = (int)((LeftPaddingColumn.ActualWidth + IconColumn.ActualWidth) * scaleAdjustment); + dragRectL.Y = 0; + dragRectL.Height = (int)((AppTitleBar.ActualHeight) * scaleAdjustment); + dragRectL.Width = (int)((TitleColumn.ActualWidth + + DragColumn.ActualWidth) * scaleAdjustment); + dragRectsList.Add(dragRectL); + + Windows.Graphics.RectInt32[] dragRects = dragRectsList.ToArray(); + appWindow.TitleBar.SetDragRectangles(dragRects); + } + } + + [DllImport("Shcore.dll", SetLastError = true)] + internal static extern int GetDpiForMonitor(IntPtr hmonitor, Monitor_DPI_Type dpiType, out uint dpiX, out uint dpiY); + + internal enum Monitor_DPI_Type : int + { + MDT_Effective_DPI = 0, + MDT_Angular_DPI = 1, + MDT_Raw_DPI = 2, + MDT_Default = MDT_Effective_DPI + } + + private double GetScaleAdjustment() + { + IntPtr hWnd = WindowNative.GetWindowHandle(this); + WindowId wndId = Win32Interop.GetWindowIdFromWindow(hWnd); + DisplayArea displayArea = DisplayArea.GetFromWindowId(wndId, DisplayAreaFallback.Primary); + IntPtr hMonitor = Win32Interop.GetMonitorFromDisplayId(displayArea.DisplayId); + + // Get DPI. + int result = GetDpiForMonitor(hMonitor, Monitor_DPI_Type.MDT_Default, out uint dpiX, out uint _); + if (result != 0) + { + throw new Exception("Could not get DPI for monitor."); + } + + uint scaleFactorPercent = (uint)(((long)dpiX * 100 + (96 >> 1)) / 96); + return scaleFactorPercent / 100.0; + } + } +} diff --git a/PlantLady/PlantLady.UWP/Package.appxmanifest b/PlantLady/PlantLady.UWP/Package.appxmanifest index e2f530d..36f2562 100644 --- a/PlantLady/PlantLady.UWP/Package.appxmanifest +++ b/PlantLady/PlantLady.UWP/Package.appxmanifest @@ -1,42 +1,20 @@  - - - - - - - + + PlantLady.UWP 6e65bb73-45b2-42bf-96c0-2eba88081e9e Assets\StoreLogo.png - - + - - + - - - + + @@ -48,7 +26,6 @@ - diff --git a/PlantLady/PlantLady.UWP/PlantLady.UWP.csproj b/PlantLady/PlantLady.UWP/PlantLady.UWP.csproj index c9d40ab..edf8ce5 100644 --- a/PlantLady/PlantLady.UWP/PlantLady.UWP.csproj +++ b/PlantLady/PlantLady.UWP/PlantLady.UWP.csproj @@ -1,102 +1,57 @@ - - - + - Debug + net7.0-windows10.0.19041 x86 - {CB144BDB-F56A-4894-AFC6-6293EDA2B9B7} - AppContainerExe - Properties - PlantLady.UWP - PlantLady.UWP + WinExe en-US - UAP - 10.0.19041.0 10.0.16299.0 - 14 true - 512 - {A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - false + true + app.manifest + true + x86;x64;arm64 + win10-$(Platform).pubxml + win10-x86;win10-x64;win10-arm64 - true bin\ARM\Debug\ DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP ;2008 - full - ARM false - prompt - true bin\ARM\Release\ TRACE;NETFX_CORE;WINDOWS_UWP - true ;2008 - pdbonly - ARM false - prompt - true true - true bin\x64\Debug\ DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP ;2008 - full - x64 false - prompt - true bin\x64\Release\ TRACE;NETFX_CORE;WINDOWS_UWP - true ;2008 - pdbonly - x64 false - prompt - true true - true bin\x86\Debug\ DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP ;2008 - full - x86 false - prompt - true bin\x86\Release\ TRACE;NETFX_CORE;WINDOWS_UWP - true ;2008 - pdbonly - x86 false - prompt - true true - - - App.xaml - - - MainPage.xaml - - - Designer @@ -104,6 +59,7 @@ + @@ -131,31 +87,23 @@ - + - - MSBuild:Compile - Designer - - - MSBuild:Compile - Designer - + - - - + + + + all + + - - {EA278C7F-74CB-4DD9-9407-D2FB485A7932} - PlantLady - + + + + - - 14.0 - - \ No newline at end of file diff --git a/PlantLady/PlantLady.UWP/Properties/AssemblyInfo.cs b/PlantLady/PlantLady.UWP/Properties/AssemblyInfo.cs deleted file mode 100644 index a5a3f0b..0000000 --- a/PlantLady/PlantLady.UWP/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,29 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("PlantLady.UWP")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("PlantLady.UWP")] -[assembly: AssemblyCopyright("Copyright © 2015")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] -[assembly: ComVisible(false)] \ No newline at end of file diff --git a/PlantLady/PlantLady.UWP/Properties/launchSettings.json b/PlantLady/PlantLady.UWP/Properties/launchSettings.json new file mode 100644 index 0000000..6202169 --- /dev/null +++ b/PlantLady/PlantLady.UWP/Properties/launchSettings.json @@ -0,0 +1,10 @@ +{ + "profiles": { + "PlantLady.UWP (Package)": { + "commandName": "MsixPackage" + }, + "PlantLady.UWP (Unpackaged)": { + "commandName": "Project" + } + } +} diff --git a/PlantLady/PlantLady.UWP/UWPToWinAppSDKUpgradeHelpers.cs b/PlantLady/PlantLady.UWP/UWPToWinAppSDKUpgradeHelpers.cs new file mode 100644 index 0000000..afad8ce --- /dev/null +++ b/PlantLady/PlantLady.UWP/UWPToWinAppSDKUpgradeHelpers.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace UWPToWinAppSDKUpgradeHelpers +{ + [System.Runtime.InteropServices.ComImport] + [System.Runtime.InteropServices.Guid("3A3DCD6C-3EAB-43DC-BCDE-45671CE800C8")] + [System.Runtime.InteropServices.InterfaceType( + System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)] + interface IDataTransferManagerInterop + { + IntPtr GetForWindow([System.Runtime.InteropServices.In] IntPtr appWindow, + [System.Runtime.InteropServices.In] ref Guid riid); + void ShowShareUIForWindow(IntPtr appWindow); + } +} diff --git a/PlantLady/PlantLady.UWP/app.manifest b/PlantLady/PlantLady.UWP/app.manifest new file mode 100644 index 0000000..5c95956 --- /dev/null +++ b/PlantLady/PlantLady.UWP/app.manifest @@ -0,0 +1,15 @@ + + + + + + + + true/PM + PerMonitorV2, PerMonitor + + + diff --git a/PlantLady/PlantLady.iOS/PlantLady.iOS.csproj b/PlantLady/PlantLady.iOS/PlantLady.iOS.csproj index b15a99d..fd3a5d1 100644 --- a/PlantLady/PlantLady.iOS/PlantLady.iOS.csproj +++ b/PlantLady/PlantLady.iOS/PlantLady.iOS.csproj @@ -1,142 +1,26 @@ - - + - Debug - iPhoneSimulator - 8.0.30703 - 2.0 - {FA46E4C6-623B-4F46-85CB-864D01C0C070} - {FEACFBD2-3405-455C-9665-78FE426C6842};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - {6143fdea-f3c2-4a09-aafa-6e230626515e} Exe - PlantLady.iOS - Resources - PlantLady.iOS - true NSUrlSessionHandler - automatic - - - true - full - false - bin\iPhoneSimulator\Debug - DEBUG - prompt - 4 - x86_64 - None - true - - - none - true - bin\iPhoneSimulator\Release - prompt - 4 - None - x86_64 + true - true - full - false - bin\iPhone\Debug - DEBUG - prompt - 4 - ARM64 iPhone Developer - true Entitlements.plist - None - -all - none - true - bin\iPhone\Release - prompt - 4 - ARM64 iPhone Developer Entitlements.plist + + net7.0-ios + - - - - - - - - - false - - - false - - - - false - - - false - - - false - - - false - - - false - - - false - - - false - - - false - - - false - - - false - - - false - - - false - - - false - - - false - - - - - - - - - - - - - + - - - {EA278C7F-74CB-4DD9-9407-D2FB485A7932} - PlantLady - + + all + \ No newline at end of file diff --git a/PlantLady/PlantLady/App.xaml b/PlantLady/PlantLady/App.xaml index 11ff371..b9a0370 100644 --- a/PlantLady/PlantLady/App.xaml +++ b/PlantLady/PlantLady/App.xaml @@ -1,5 +1,5 @@  - diff --git a/PlantLady/PlantLady/App.xaml.cs b/PlantLady/PlantLady/App.xaml.cs index ab9d967..e66004a 100644 --- a/PlantLady/PlantLady/App.xaml.cs +++ b/PlantLady/PlantLady/App.xaml.cs @@ -1,6 +1,6 @@ using System; -using Xamarin.Forms; -using Xamarin.Forms.Xaml; +using Microsoft.Maui; +using Microsoft.Maui.Controls; namespace PlantLady { diff --git a/PlantLady/PlantLady/AppShell.xaml b/PlantLady/PlantLady/AppShell.xaml index 160a8c8..9f8ea41 100644 --- a/PlantLady/PlantLady/AppShell.xaml +++ b/PlantLady/PlantLady/AppShell.xaml @@ -1,5 +1,5 @@  -(); + + return builder.Build(); + } +} diff --git a/PlantLady/PlantLady/PlantLady.csproj b/PlantLady/PlantLady/PlantLady.csproj index ddeecf9..dfe741e 100644 --- a/PlantLady/PlantLady/PlantLady.csproj +++ b/PlantLady/PlantLady/PlantLady.csproj @@ -1,36 +1,29 @@ - - netstandard2.0 - true + true + net7.0-android;net7.0-ios + Library + enable - - - portable - true - - - - - - - - - MSBuild:UpdateDesignTimeXaml - + + + all + + + \ No newline at end of file diff --git a/PlantLady/PlantLady/Views/HomePage.xaml b/PlantLady/PlantLady/Views/HomePage.xaml index a65da23..de32996 100644 --- a/PlantLady/PlantLady/Views/HomePage.xaml +++ b/PlantLady/PlantLady/Views/HomePage.xaml @@ -1,5 +1,5 @@  - diff --git a/PlantLady/PlantLady/Views/HomePage.xaml.cs b/PlantLady/PlantLady/Views/HomePage.xaml.cs index 8669c6a..b4980a0 100644 --- a/PlantLady/PlantLady/Views/HomePage.xaml.cs +++ b/PlantLady/PlantLady/Views/HomePage.xaml.cs @@ -4,7 +4,8 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -using Xamarin.Forms; +using Microsoft.Maui; +using Microsoft.Maui.Controls; namespace PlantLady { diff --git a/PlantLady/PlantLady/Views/PlantsPage.xaml b/PlantLady/PlantLady/Views/PlantsPage.xaml index 5379d9c..c00d3a8 100644 --- a/PlantLady/PlantLady/Views/PlantsPage.xaml +++ b/PlantLady/PlantLady/Views/PlantsPage.xaml @@ -1,5 +1,5 @@  - diff --git a/PlantLady/PlantLady/Views/PlantsPage.xaml.cs b/PlantLady/PlantLady/Views/PlantsPage.xaml.cs index d936c5c..623f196 100644 --- a/PlantLady/PlantLady/Views/PlantsPage.xaml.cs +++ b/PlantLady/PlantLady/Views/PlantsPage.xaml.cs @@ -3,9 +3,8 @@ using System.Linq; using System.Text; using System.Threading.Tasks; - -using Xamarin.Forms; -using Xamarin.Forms.Xaml; +using Microsoft.Maui; +using Microsoft.Maui.Controls; namespace PlantLady.Views { diff --git a/UpgradeReport.sarif b/UpgradeReport.sarif new file mode 100644 index 0000000..4c8a6dc --- /dev/null +++ b/UpgradeReport.sarif @@ -0,0 +1,1786 @@ +{ + "$schema": "https://schemastore.azurewebsites.net/schemas/json/sarif-2.1.0-rtm.5.json", + "version": "2.1.0", + "runs": [ + { + "tool": { + "driver": { + "name": "Back up project", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep", + "fullDescription": { + "text": "Project backed up to C:\\code\\PlantLady.backup\\PlantLady" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep", + "message": { + "text": "Complete: Project backed up to C:\\code\\PlantLady.backup\\PlantLady" + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady.backup/PlantLady" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Remove package 'Xamarin.Forms'", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]", + "fullDescription": { + "text": "Remove package 'Xamarin.Forms'" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]", + "message": { + "text": "Complete: Remove package 'Xamarin.Forms'" + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/PlantLady/PlantLady/PlantLady.csproj" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Remove package 'Xamarin.Essentials'", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]", + "fullDescription": { + "text": "Remove package 'Xamarin.Essentials'" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]", + "message": { + "text": "Complete: Remove package 'Xamarin.Essentials'" + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/PlantLady/PlantLady/PlantLady.csproj" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]", + "fullDescription": { + "text": "Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]", + "message": { + "text": "Complete: Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'" + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/PlantLady/PlantLady/PlantLady.csproj" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Add template files", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep", + "fullDescription": { + "text": "Added template file MauiProgram.cs" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep", + "message": { + "text": "Complete: Added template file MauiProgram.cs" + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/MauiProgram.cs" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Apply fix for UA0014: .NET MAUI projects should not reference Xamarin.Forms namespaces", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "UA0014", + "fullDescription": { + "text": "Diagnostic UA0014 fixed in C:\\code\\PlantLady\\PlantLady\\PlantLady\\App.xaml.cs" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "UA0014", + "message": { + "text": "Complete: Diagnostic UA0014 fixed in C:\\code\\PlantLady\\PlantLady\\PlantLady\\App.xaml.cs" + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/PlantLady/PlantLady/App.xaml.cs" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Apply fix for UA0014: .NET MAUI projects should not reference Xamarin.Forms namespaces", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "UA0014", + "fullDescription": { + "text": "Diagnostic UA0014 fixed in C:\\code\\PlantLady\\PlantLady\\PlantLady\\AppShell.xaml.cs" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "UA0014", + "message": { + "text": "Complete: Diagnostic UA0014 fixed in C:\\code\\PlantLady\\PlantLady\\PlantLady\\AppShell.xaml.cs" + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/PlantLady/PlantLady/AppShell.xaml.cs" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Apply fix for UA0014: .NET MAUI projects should not reference Xamarin.Forms namespaces", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "UA0014", + "fullDescription": { + "text": "Diagnostic UA0014 fixed in C:\\code\\PlantLady\\PlantLady\\PlantLady\\AssemblyInfo.cs" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "UA0014", + "message": { + "text": "Complete: Diagnostic UA0014 fixed in C:\\code\\PlantLady\\PlantLady\\PlantLady\\AssemblyInfo.cs" + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/PlantLady/PlantLady/AssemblyInfo.cs" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Apply fix for UA0014: .NET MAUI projects should not reference Xamarin.Forms namespaces", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "UA0014", + "fullDescription": { + "text": "Diagnostic UA0014 fixed in C:\\code\\PlantLady\\PlantLady\\PlantLady\\Views\\HomePage.xaml.cs" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "UA0014", + "message": { + "text": "Complete: Diagnostic UA0014 fixed in C:\\code\\PlantLady\\PlantLady\\PlantLady\\Views\\HomePage.xaml.cs" + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/PlantLady/PlantLady/Views/HomePage.xaml.cs" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Apply fix for UA0014: .NET MAUI projects should not reference Xamarin.Forms namespaces", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "UA0014", + "fullDescription": { + "text": "Diagnostic UA0014 fixed in C:\\code\\PlantLady\\PlantLady\\PlantLady\\Views\\PlantsPage.xaml.cs" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "UA0014", + "message": { + "text": "Complete: Diagnostic UA0014 fixed in C:\\code\\PlantLady\\PlantLady\\PlantLady\\Views\\PlantsPage.xaml.cs" + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/PlantLady/PlantLady/Views/PlantsPage.xaml.cs" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Apply fix for UA0014: .NET MAUI projects should not reference Xamarin.Forms namespaces", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "UA0014", + "fullDescription": { + "text": "Diagnostic UA0014 fixed in C:\\code\\PlantLady\\PlantLady\\PlantLady\\App.xaml.cs" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "UA0014", + "message": { + "text": "Complete: Diagnostic UA0014 fixed in C:\\code\\PlantLady\\PlantLady\\PlantLady\\App.xaml.cs" + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/PlantLady/PlantLady/App.xaml.cs" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Apply fix for UA0014: .NET MAUI projects should not reference Xamarin.Forms namespaces", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "UA0014", + "fullDescription": { + "text": "Diagnostic UA0014 fixed in C:\\code\\PlantLady\\PlantLady\\PlantLady\\AppShell.xaml.cs" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "UA0014", + "message": { + "text": "Complete: Diagnostic UA0014 fixed in C:\\code\\PlantLady\\PlantLady\\PlantLady\\AppShell.xaml.cs" + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/PlantLady/PlantLady/AppShell.xaml.cs" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Apply fix for UA0014: .NET MAUI projects should not reference Xamarin.Forms namespaces", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "UA0014", + "fullDescription": { + "text": "Diagnostic UA0014 fixed in C:\\code\\PlantLady\\PlantLady\\PlantLady\\AssemblyInfo.cs" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "UA0014", + "message": { + "text": "Complete: Diagnostic UA0014 fixed in C:\\code\\PlantLady\\PlantLady\\PlantLady\\AssemblyInfo.cs" + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/PlantLady/PlantLady/AssemblyInfo.cs" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Apply fix for UA0014: .NET MAUI projects should not reference Xamarin.Forms namespaces", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "UA0014", + "fullDescription": { + "text": "Diagnostic UA0014 fixed in C:\\code\\PlantLady\\PlantLady\\PlantLady\\Views\\PlantsPage.xaml.cs" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "UA0014", + "message": { + "text": "Complete: Diagnostic UA0014 fixed in C:\\code\\PlantLady\\PlantLady\\PlantLady\\Views\\PlantsPage.xaml.cs" + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/PlantLady/PlantLady/Views/PlantsPage.xaml.cs" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Back up project", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep", + "fullDescription": { + "text": "Project backed up to C:\\code\\PlantLady.backup\\PlantLady.UWP" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep", + "message": { + "text": "Complete: Project backed up to C:\\code\\PlantLady.backup\\PlantLady.UWP" + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady.backup/PlantLady.UWP" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Convert project file to SDK style", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.TryConvertProjectConverterStep", + "fullDescription": { + "text": "Project file converted successfully! The project may require additional changes to build successfully against the new .NET target." + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.TryConvertProjectConverterStep", + "message": { + "text": "Complete: Project file converted successfully! The project may require additional changes to build successfully against the new .NET target." + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/PlantLady/PlantLady.UWP/PlantLady.UWP.csproj" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Remove package 'Xamarin.Forms'", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]", + "fullDescription": { + "text": "Remove package 'Xamarin.Forms'" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]", + "message": { + "text": "Complete: Remove package 'Xamarin.Forms'" + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/PlantLady/PlantLady.UWP/PlantLady.UWP.csproj" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Remove package 'Microsoft.NETCore.UniversalWindowsPlatform'", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]", + "fullDescription": { + "text": "Remove package 'Microsoft.NETCore.UniversalWindowsPlatform'" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]", + "message": { + "text": "Complete: Remove package 'Microsoft.NETCore.UniversalWindowsPlatform'" + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/PlantLady/PlantLady.UWP/PlantLady.UWP.csproj" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Remove package 'Xamarin.Essentials'", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]", + "fullDescription": { + "text": "Remove package 'Xamarin.Essentials'" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]", + "message": { + "text": "Complete: Remove package 'Xamarin.Essentials'" + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/PlantLady/PlantLady.UWP/PlantLady.UWP.csproj" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Add package 'Microsoft.WindowsAppSDK'", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]", + "fullDescription": { + "text": "Add package 'Microsoft.WindowsAppSDK'" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]", + "message": { + "text": "Complete: Add package 'Microsoft.WindowsAppSDK'" + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/PlantLady/PlantLady.UWP/PlantLady.UWP.csproj" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Add package 'Microsoft.Graphics.Win2D'", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]", + "fullDescription": { + "text": "Add package 'Microsoft.Graphics.Win2D'" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]", + "message": { + "text": "Complete: Add package 'Microsoft.Graphics.Win2D'" + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/PlantLady/PlantLady.UWP/PlantLady.UWP.csproj" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]", + "fullDescription": { + "text": "Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]", + "message": { + "text": "Complete: Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'" + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/PlantLady/PlantLady.UWP/PlantLady.UWP.csproj" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Add package 'Microsoft.Windows.Compatibility'", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]", + "fullDescription": { + "text": "Add package 'Microsoft.Windows.Compatibility'" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]", + "message": { + "text": "Complete: Add package 'Microsoft.Windows.Compatibility'" + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/PlantLady/PlantLady.UWP/PlantLady.UWP.csproj" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Update TFM", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.SetTFMStep", + "fullDescription": { + "text": "Updated TFM to net7.0-windows10.0.19041" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.SetTFMStep", + "message": { + "text": "Complete: Updated TFM to net7.0-windows10.0.19041" + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/PlantLady/PlantLady.UWP/PlantLady.UWP.csproj" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Add template files", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep", + "fullDescription": { + "text": "Added template file app.manifest" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep", + "message": { + "text": "Complete: Added template file app.manifest" + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/app.manifest" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Add template files", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep", + "fullDescription": { + "text": "Added template file Properties\\launchSettings.json" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep", + "message": { + "text": "Complete: Added template file Properties\\launchSettings.json" + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/Properties/launchSettings.json" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Add template files", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep", + "fullDescription": { + "text": "Added template file Properties\\PublishProfiles\\win10-arm64.pubxml" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep", + "message": { + "text": "Complete: Added template file Properties\\PublishProfiles\\win10-arm64.pubxml" + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/Properties/PublishProfiles/win10-arm64.pubxml" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Add template files", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep", + "fullDescription": { + "text": "Added template file Properties\\PublishProfiles\\win10-x64.pubxml" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep", + "message": { + "text": "Complete: Added template file Properties\\PublishProfiles\\win10-x64.pubxml" + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/Properties/PublishProfiles/win10-x64.pubxml" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Add template files", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep", + "fullDescription": { + "text": "Added template file Properties\\PublishProfiles\\win10-x86.pubxml" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep", + "message": { + "text": "Complete: Added template file Properties\\PublishProfiles\\win10-x86.pubxml" + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/Properties/PublishProfiles/win10-x86.pubxml" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Add template files", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep", + "fullDescription": { + "text": "Added template file App.xaml.cs" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep", + "message": { + "text": "Complete: Added template file App.xaml.cs" + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/App.xaml.cs" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Add template files", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep", + "fullDescription": { + "text": "Added template file MainWindow.xaml.cs" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep", + "message": { + "text": "Complete: Added template file MainWindow.xaml.cs" + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/MainWindow.xaml.cs" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Add template files", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep", + "fullDescription": { + "text": "Added template file MainWindow.xaml" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep", + "message": { + "text": "Complete: Added template file MainWindow.xaml" + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/MainWindow.xaml" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Add template files", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep", + "fullDescription": { + "text": "Added template file UWPToWinAppSDKUpgradeHelpers.cs" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep", + "message": { + "text": "Complete: Added template file UWPToWinAppSDKUpgradeHelpers.cs" + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/UWPToWinAppSDKUpgradeHelpers.cs" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Update WinUI namespaces", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "UA301", + "name": "Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WinUINamespaceUpdater", + "fullDescription": { + "text": "Update WinUI namespaces" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "UA301", + "message": { + "text": "Success: " + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/PlantLady/PlantLady.UWP/PlantLady.UWP.csproj" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Update WinUI Project Properties", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "UA302", + "name": "Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WinUIPropertiesUpdater", + "fullDescription": { + "text": "Update WinUI Project Properties" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "UA302", + "message": { + "text": "Success: " + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/PlantLady/PlantLady.UWP/PlantLady.UWP.csproj" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Update package.appxmanifest", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "UA304", + "name": "Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WinUIPackageAppxmanifestUpdater", + "fullDescription": { + "text": "Update package.appxmanifest" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "UA304", + "message": { + "text": "Success: " + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/PlantLady/PlantLady.UWP/PlantLady.UWP.csproj" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Remove unnecessary files", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "UA303", + "name": "Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WinUIUnnecessaryFilesUpdater", + "fullDescription": { + "text": "Remove unnecessary files" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "UA303", + "message": { + "text": "Success: " + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/PlantLady/PlantLady.UWP/PlantLady.UWP.csproj" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Back up project", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep", + "fullDescription": { + "text": "Project backed up to C:\\code\\PlantLady.backup\\PlantLady.Android" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep", + "message": { + "text": "Complete: Project backed up to C:\\code\\PlantLady.backup\\PlantLady.Android" + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady.backup/PlantLady.Android" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Convert project file to SDK style", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.TryConvertProjectConverterStep", + "fullDescription": { + "text": "Project file converted successfully! The project may require additional changes to build successfully against the new .NET target." + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.TryConvertProjectConverterStep", + "message": { + "text": "Complete: Project file converted successfully! The project may require additional changes to build successfully against the new .NET target." + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/PlantLady/PlantLady.Android/PlantLady.Android.csproj" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Remove package 'Xamarin.Forms'", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]", + "fullDescription": { + "text": "Remove package 'Xamarin.Forms'" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]", + "message": { + "text": "Complete: Remove package 'Xamarin.Forms'" + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/PlantLady/PlantLady.Android/PlantLady.Android.csproj" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Remove package 'Xamarin.Essentials'", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]", + "fullDescription": { + "text": "Remove package 'Xamarin.Essentials'" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]", + "message": { + "text": "Complete: Remove package 'Xamarin.Essentials'" + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/PlantLady/PlantLady.Android/PlantLady.Android.csproj" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]", + "fullDescription": { + "text": "Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]", + "message": { + "text": "Complete: Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'" + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/PlantLady/PlantLady.Android/PlantLady.Android.csproj" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Add template files", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep", + "fullDescription": { + "text": "Added template file MainApplication.cs" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep", + "message": { + "text": "Complete: Added template file MainApplication.cs" + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/MainApplication.cs" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Back up project", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep", + "fullDescription": { + "text": "Project backed up to C:\\code\\PlantLady.backup\\PlantLady.iOS" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep", + "message": { + "text": "Complete: Project backed up to C:\\code\\PlantLady.backup\\PlantLady.iOS" + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady.backup/PlantLady.iOS" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Convert project file to SDK style", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.TryConvertProjectConverterStep", + "fullDescription": { + "text": "Project file converted successfully! The project may require additional changes to build successfully against the new .NET target." + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.TryConvertProjectConverterStep", + "message": { + "text": "Complete: Project file converted successfully! The project may require additional changes to build successfully against the new .NET target." + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/PlantLady/PlantLady.iOS/PlantLady.iOS.csproj" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Remove package 'Xamarin.Forms'", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]", + "fullDescription": { + "text": "Remove package 'Xamarin.Forms'" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]", + "message": { + "text": "Complete: Remove package 'Xamarin.Forms'" + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/PlantLady/PlantLady.iOS/PlantLady.iOS.csproj" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Remove package 'Xamarin.Essentials'", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]", + "fullDescription": { + "text": "Remove package 'Xamarin.Essentials'" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]", + "message": { + "text": "Complete: Remove package 'Xamarin.Essentials'" + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/PlantLady/PlantLady.iOS/PlantLady.iOS.csproj" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + }, + { + "tool": { + "driver": { + "name": "Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'", + "semanticVersion": "", + "informationUri": "https://github.com/dotnet/upgrade-assistant#usage", + "rules": [ + { + "id": "Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]", + "fullDescription": { + "text": "Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'" + }, + "helpUri": "about:blank" + } + ] + } + }, + "results": [ + { + "ruleId": "Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]", + "message": { + "text": "Complete: Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'" + }, + "locations": [ + { + "physicalLocation": { + "artifactLocation": { + "uri": "file:///C:/code/PlantLady/PlantLady/PlantLady.iOS/PlantLady.iOS.csproj" + }, + "region": {} + } + } + ] + } + ], + "columnKind": "utf16CodeUnits" + } + ] +} \ No newline at end of file diff --git a/upgrade-assistant.clef b/upgrade-assistant.clef new file mode 100644 index 0000000..2b7a8cc --- /dev/null +++ b/upgrade-assistant.clef @@ -0,0 +1,16979 @@ +{"@t":"2022-11-15T22:23:39.5228298Z","@mt":"Hosting starting","@l":"Debug","EventId":{"Id":1,"Name":"Starting"},"SourceContext":"Microsoft.Extensions.Hosting.Internal.Host"} +{"@t":"2022-11-15T22:23:39.5827960Z","@mt":"Configuration loaded from context base directory: {BaseDirectory}","@l":"Debug","BaseDirectory":"C:\\Users\\Sweeky Satpathy\\.dotnet\\tools\\.store\\upgrade-assistant\\0.4.355802\\upgrade-assistant\\0.4.355802\\tools\\net7.0\\any\\","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Cli.ConsoleRunner"} +{"@t":"2022-11-15T22:23:39.6570638Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"NuGet","Location":"C:\\Users\\Sweeky Satpathy\\.dotnet\\tools\\.store\\upgrade-assistant\\0.4.355802\\upgrade-assistant\\0.4.355802\\tools\\net7.0\\any\\extensions\\nuget","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"} +{"@t":"2022-11-15T22:23:39.6595940Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"BinaryAnalysis","Location":"C:\\Users\\Sweeky Satpathy\\.dotnet\\tools\\.store\\upgrade-assistant\\0.4.355802\\upgrade-assistant\\0.4.355802\\tools\\net7.0\\any\\extensions\\binaryanalysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"} +{"@t":"2022-11-15T22:23:39.6611341Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"Default","Location":"C:\\Users\\Sweeky Satpathy\\.dotnet\\tools\\.store\\upgrade-assistant\\0.4.355802\\upgrade-assistant\\0.4.355802\\tools\\net7.0\\any\\extensions\\default","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"} +{"@t":"2022-11-15T22:23:39.6623231Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"try-convert","Location":"C:\\Users\\Sweeky Satpathy\\.dotnet\\tools\\.store\\upgrade-assistant\\0.4.355802\\upgrade-assistant\\0.4.355802\\tools\\net7.0\\any\\extensions\\try-convert","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"} +{"@t":"2022-11-15T22:23:39.6635234Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"VB","Location":"C:\\Users\\Sweeky Satpathy\\.dotnet\\tools\\.store\\upgrade-assistant\\0.4.355802\\upgrade-assistant\\0.4.355802\\tools\\net7.0\\any\\extensions\\vb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"} +{"@t":"2022-11-15T22:23:39.6650954Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"Web","Location":"C:\\Users\\Sweeky Satpathy\\.dotnet\\tools\\.store\\upgrade-assistant\\0.4.355802\\upgrade-assistant\\0.4.355802\\tools\\net7.0\\any\\extensions\\web","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"} +{"@t":"2022-11-15T22:23:39.6664605Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"windows","Location":"C:\\Users\\Sweeky Satpathy\\.dotnet\\tools\\.store\\upgrade-assistant\\0.4.355802\\upgrade-assistant\\0.4.355802\\tools\\net7.0\\any\\extensions\\windows","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"} +{"@t":"2022-11-15T22:23:39.6676711Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"MAUI","Location":"C:\\Users\\Sweeky Satpathy\\.dotnet\\tools\\.store\\upgrade-assistant\\0.4.355802\\upgrade-assistant\\0.4.355802\\tools\\net7.0\\any\\extensions\\maui","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"} +{"@t":"2022-11-15T22:23:39.6688637Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"WCFUpdater","Location":"C:\\Users\\Sweeky Satpathy\\.dotnet\\tools\\.store\\upgrade-assistant\\0.4.355802\\upgrade-assistant\\0.4.355802\\tools\\net7.0\\any\\extensions\\wcf","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"} +{"@t":"2022-11-15T22:23:39.6741755Z","@mt":"Loaded {Count} extensions","Count":9,"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"} +{"@t":"2022-11-15T22:23:39.8565799Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Common, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:23:39.8742343Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Commands, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:23:39.8798137Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.DependencyResolver.Core, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:23:39.9512650Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Packaging, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:23:39.9583043Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Frameworks, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:23:40.1042885Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Protocol, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:23:40.1156973Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Versioning, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:23:40.2357442Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.ProjectModel, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:23:40.2425935Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Configuration, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:23:40.3643269Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Azure.Core, Version=1.25.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8","Extension":"UA_BinaryAnalysis6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:23:40.4622900Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Azure.Storage.Blobs, Version=12.13.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8","Extension":"UA_BinaryAnalysis6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:23:40.5743192Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Packaging, Version=5.8.0.6930, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_BinaryAnalysis6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:23:40.5792326Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Versioning, Version=5.8.0.6930, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_BinaryAnalysis6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:23:40.6828734Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Protocol, Version=5.8.0.6930, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_BinaryAnalysis6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:23:40.7810211Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Common, Version=5.8.0.6930, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_BinaryAnalysis6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:23:40.7833405Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Frameworks, Version=5.8.0.6930, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_BinaryAnalysis6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:23:40.8124298Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:23:40.8685272Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Configuration, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:23:40.9678433Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:23:40.9713693Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:23:41.0226890Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Source, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:23:41.0764479Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:23:41.1435953Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:23:41.2649394Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.CodeFixes, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:23:41.4115859Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"MSBuild.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_try-convert6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:23:41.6389633Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Steps.Razor, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Web6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:23:41.6415070Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.AspNetCore.Razor.Language, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60","Extension":"UA_Web6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:23:41.7518944Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"DiffPlex, Version=1.6.3.0, Culture=neutral, PublicKeyToken=1d35e91d1bd7bc0f","Extension":"UA_Web6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:23:42.3384759Z","@mt":"Using Visual Studio v{VsVersion} [{VsPath}]","@l":"Debug","VsVersion":"17.5.33114.351","VsPath":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Preview","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.VisualStudioFinder"} +{"@t":"2022-11-15T22:23:42.5496921Z","@mt":"Using MSBuild from {Path}","Path":"C:\\Program Files\\dotnet\\sdk\\7.0.100\\","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.WorkspaceOptions"} +{"@t":"2022-11-15T22:23:42.5516840Z","@mt":"Using Visual Studio install from {Path} [v{Version}]","Path":"C:\\Program Files\\Microsoft Visual Studio\\2022\\Preview","Version":17,"SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.WorkspaceOptions"} +{"@t":"2022-11-15T22:23:42.7638804Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Credentials, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:23:43.0847581Z","@mt":"Found package sources: {PackageSources}","@l":"Debug","PackageSources":["https://api.nuget.org/v3/index.json [https://api.nuget.org/v3/index.json]"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetPackageSourceFactory"} +{"@t":"2022-11-15T22:23:43.5122302Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"} +{"@t":"2022-11-15T22:23:43.5125346Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Configuration.ConfigUpdaterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"} +{"@t":"2022-11-15T22:23:43.5127558Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"} +{"@t":"2022-11-15T22:23:43.5129402Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"} +{"@t":"2022-11-15T22:23:43.5131000Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"} +{"@t":"2022-11-15T22:23:43.5132488Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"} +{"@t":"2022-11-15T22:23:43.5135167Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.FinalizeSolutionStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"} +{"@t":"2022-11-15T22:23:43.5136844Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.EntrypointSelectionStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"} +{"@t":"2022-11-15T22:23:43.5138345Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"} +{"@t":"2022-11-15T22:23:43.5139858Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"} +{"@t":"2022-11-15T22:23:43.5141841Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.SetTFMStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"} +{"@t":"2022-11-15T22:23:43.5143374Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.TryConvertProjectConverterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"} +{"@t":"2022-11-15T22:23:43.5145286Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Extensions.VisualBasic.VisualBasicProjectUpdaterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"} +{"@t":"2022-11-15T22:23:43.5147831Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Razor.RazorUpdaterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"} +{"@t":"2022-11-15T22:23:43.5149775Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsDesktopUpdateStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"} +{"@t":"2022-11-15T22:23:43.5152797Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiWorkloadUpgradeStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"} +{"@t":"2022-11-15T22:23:43.5153484Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiPlatformTargetFrameworkUpgradeStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"} +{"@t":"2022-11-15T22:23:43.5153904Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"} +{"@t":"2022-11-15T22:23:43.5154350Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.XamlNamespaceUpgradeStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"} +{"@t":"2022-11-15T22:23:43.5156158Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Extensions.WCFUpdater.WCFUpdateStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"} +{"@t":"2022-11-15T22:23:43.5285052Z","@mt":"Finished ordering upgrade steps: {UpgradeStepList}","@l":"Debug","UpgradeStepList":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.EntrypointSelectionStep, Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep, Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep, Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.TryConvertProjectConverterStep, Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiPlatformTargetFrameworkUpgradeStep, Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiWorkloadUpgradeStep, Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep, Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.SetTFMStep, Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep, Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep, Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep, Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.XamlNamespaceUpgradeStep, Microsoft.DotNet.UpgradeAssistant.Extensions.VisualBasic.VisualBasicProjectUpdaterStep, Microsoft.DotNet.UpgradeAssistant.Extensions.WCFUpdater.WCFUpdateStep, Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsDesktopUpdateStep, Microsoft.DotNet.UpgradeAssistant.Steps.Razor.RazorUpdaterStep, Microsoft.DotNet.UpgradeAssistant.Steps.Configuration.ConfigUpdaterStep, Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep, Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep, Microsoft.DotNet.UpgradeAssistant.Steps.Solution.FinalizeSolutionStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"} +{"@t":"2022-11-15T22:23:43.5616513Z","@mt":"Generating context","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildUpgradeContextFactory"} +{"@t":"2022-11-15T22:23:43.6040329Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.Build.resources, Version=15.1.0.0, Culture=en-US, PublicKeyToken=b03f5f7f11d50a3a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-11-15T22:23:43.6160865Z","@mt":"Initializing context","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildUpgradeContextFactory"} +{"@t":"2022-11-15T22:23:45.1636894Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.Build.Tasks.Core.resources, Version=15.1.0.0, Culture=en-US, PublicKeyToken=b03f5f7f11d50a3a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-11-15T22:23:45.9988835Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\Program Files\\Microsoft Visual Studio\\2022\\Preview\\MSBuild\\Microsoft\\NuGet\\17.0\\Microsoft.NuGet.targets: (198, 5): The package Microsoft.NETCore.UniversalWindowsPlatform with version 6.2.12 could not be found in C:\\Users\\Sweeky Satpathy\\.nuget\\packages\\, C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages, C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\, C:\\Program Files (x86)\\Microsoft SDKs\\UWPNuGetPackages\\. Run a NuGet package restore to download the package.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:23:45.9991385Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\Program Files\\Microsoft Visual Studio\\2022\\Preview\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\Microsoft.NET.Build.Extensions.ConflictResolution.targets: (30, 5): The \"ResolvePackageFileConflicts\" task could not be loaded from the assembly C:\\Program Files\\Microsoft Visual Studio\\2022\\Preview\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\\\tools\\net7.0\\Microsoft.NET.Build.Extensions.Tasks.dll. Could not load file or assembly 'C:\\Program Files\\Microsoft Visual Studio\\2022\\Preview\\MSBuild\\Microsoft\\Microsoft.NET.Build.Extensions\\tools\\net7.0\\Microsoft.NET.Build.Extensions.Tasks.dll'. The system cannot find the path specified. Confirm that the declaration is correct, that the assembly and all its dependencies are available, and that the task contains a public class that implements Microsoft.Build.Framework.ITask.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:23:47.4746874Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:23:47.4960176Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:23:47.6392909Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\Microsoft Visual Studio\\2022\\Preview\\MSBuild\\Xamarin\\Android\\Xamarin.Android.Legacy.targets: (234, 5): The reference assemblies for MonoAndroid,Version=v1.0 were not found. To resolve this, install the Developer Pack (SDK/Targeting Pack) for this framework version or retarget your application. You can download .NET Framework Developer Packs at https://aka.ms/msbuild/developerpacks","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:23:47.6429684Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:23:47.7689198Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1229, 5): The reference assemblies for Xamarin.iOS,Version=v1.0 were not found. To resolve this, install the Developer Pack (SDK/Targeting Pack) for this framework version or retarget your application. You can download .NET Framework Developer Packs at https://aka.ms/msbuild/developerpacks","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:23:47.7707758Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:23:48.0400068Z","@mt":"Done initializing context","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildUpgradeContextFactory"} +{"@t":"2022-11-15T22:23:48.9880785Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.LibraryModel, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:23:49.3674606Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:23:49.3754261Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\85d943dc-0e1c-4c5d-8406-2b9fc896d5d3\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:23:49.4199242Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed","Extension":"UA_NuGet6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:23:49.6612295Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\85d943dc-0e1c-4c5d-8406-2b9fc896d5d3\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:23:49.6823191Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:23:50.2632763Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/xamarin.forms/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:23:50.3809611Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.netcore.universalwindowsplatform/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:23:50.6388757Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.netcore.universalwindowsplatform/index.json 257ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:23:50.7770349Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/xamarin.forms/index.json 499ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:23:50.7809619Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.netcore.universalwindowsplatform/6.2.12/microsoft.netcore.universalwindowsplatform.6.2.12.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:23:50.8029608Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/xamarin.forms/5.0.0.2083/xamarin.forms.5.0.0.2083.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:23:50.8093770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.netcore.universalwindowsplatform/6.2.12/microsoft.netcore.universalwindowsplatform.6.2.12.nupkg 28ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:23:50.8357228Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/xamarin.forms/5.0.0.2083/xamarin.forms.5.0.0.2083.nupkg 32ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:23:54.9273547Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.net.native.compiler/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:23:54.9305281Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.net.uwpcoreruntimesdk/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:23:54.9342953Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.netcore.platforms/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:23:55.0190615Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.net.native.compiler/index.json 91ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:23:55.0305287Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.net.native.compiler/2.2.10-rel-29722-00/microsoft.net.native.compiler.2.2.10-rel-29722-00.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:23:55.0606719Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.net.native.compiler/2.2.10-rel-29722-00/microsoft.net.native.compiler.2.2.10-rel-29722-00.nupkg 30ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:23:55.1307572Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.netcore.platforms/index.json 196ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:23:55.1452654Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.netcore.platforms/2.1.0/microsoft.netcore.platforms.2.1.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:23:55.1829562Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.netcore.platforms/2.1.0/microsoft.netcore.platforms.2.1.0.nupkg 37ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:23:55.3198924Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.net.uwpcoreruntimesdk/index.json 389ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:23:55.3286770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.net.uwpcoreruntimesdk/2.2.12/microsoft.net.uwpcoreruntimesdk.2.2.12.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:23:55.3663721Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.net.uwpcoreruntimesdk/2.2.12/microsoft.net.uwpcoreruntimesdk.2.2.12.nupkg 37ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:23:55.8588972Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.win10-arm.microsoft.net.uwpcoreruntimesdk/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:23:55.8617129Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.win10-x64.microsoft.net.uwpcoreruntimesdk/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:23:55.8647360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.win10-x86.microsoft.net.uwpcoreruntimesdk/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:23:55.9481716Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.win10-x64.microsoft.net.uwpcoreruntimesdk/index.json 86ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:23:55.9577643Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.win10-x64.microsoft.net.uwpcoreruntimesdk/2.2.12/runtime.win10-x64.microsoft.net.uwpcoreruntimesdk.2.2.12.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:23:55.9628110Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.win10-arm.microsoft.net.uwpcoreruntimesdk/index.json 103ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:23:55.9679890Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.win10-arm.microsoft.net.uwpcoreruntimesdk/2.2.12/runtime.win10-arm.microsoft.net.uwpcoreruntimesdk.2.2.12.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:23:55.9952995Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.win10-x64.microsoft.net.uwpcoreruntimesdk/2.2.12/runtime.win10-x64.microsoft.net.uwpcoreruntimesdk.2.2.12.nupkg 37ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:23:56.0054614Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.win10-arm.microsoft.net.uwpcoreruntimesdk/2.2.12/runtime.win10-arm.microsoft.net.uwpcoreruntimesdk.2.2.12.nupkg 37ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:23:56.1181460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.win10-x86.microsoft.net.uwpcoreruntimesdk/index.json 253ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:23:56.1245974Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.win10-x86.microsoft.net.uwpcoreruntimesdk/2.2.12/runtime.win10-x86.microsoft.net.uwpcoreruntimesdk.2.2.12.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:23:56.1833961Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.win10-x86.microsoft.net.uwpcoreruntimesdk/2.2.12/runtime.win10-x86.microsoft.net.uwpcoreruntimesdk.2.2.12.nupkg 58ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:24:12.2270074Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/win2d.uwp/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:24:12.2293991Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.ui.xaml/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:24:12.4179384Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.ui.xaml/index.json 188ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:24:12.4374765Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.ui.xaml/2.4.3/microsoft.ui.xaml.2.4.3.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:24:12.4732763Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.ui.xaml/2.4.3/microsoft.ui.xaml.2.4.3.nupkg 35ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:24:12.4796124Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/win2d.uwp/index.json 252ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:24:12.4902968Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/win2d.uwp/1.20.0/win2d.uwp.1.20.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:24:12.5441421Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/win2d.uwp/1.20.0/win2d.uwp.1.20.0.nupkg 53ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:24:21.5381798Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.win10-arm.microsoft.net.native.compiler/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:24:21.5417683Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.win10-x64.microsoft.net.native.compiler/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:24:21.5451760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.win10-x86.microsoft.net.native.compiler/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:24:21.5490548Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.win10-arm64.microsoft.net.native.compiler/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:24:21.6207470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.win10-arm.microsoft.net.native.compiler/index.json 82ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:24:21.6364725Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.win10-arm.microsoft.net.native.compiler/2.2.10-rel-29722-00/runtime.win10-arm.microsoft.net.native.compiler.2.2.10-rel-29722-00.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:24:21.7042536Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.win10-arm.microsoft.net.native.compiler/2.2.10-rel-29722-00/runtime.win10-arm.microsoft.net.native.compiler.2.2.10-rel-29722-00.nupkg 67ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:24:21.7955851Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.win10-x64.microsoft.net.native.compiler/index.json 253ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:24:21.8043192Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.win10-x64.microsoft.net.native.compiler/2.2.10-rel-29722-00/runtime.win10-x64.microsoft.net.native.compiler.2.2.10-rel-29722-00.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:24:21.8305509Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.win10-x64.microsoft.net.native.compiler/2.2.10-rel-29722-00/runtime.win10-x64.microsoft.net.native.compiler.2.2.10-rel-29722-00.nupkg 26ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:24:21.8858145Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.win10-x86.microsoft.net.native.compiler/index.json 340ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:24:21.8955081Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.win10-x86.microsoft.net.native.compiler/2.2.10-rel-29722-00/runtime.win10-x86.microsoft.net.native.compiler.2.2.10-rel-29722-00.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:24:21.9365810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.win10-x86.microsoft.net.native.compiler/2.2.10-rel-29722-00/runtime.win10-x86.microsoft.net.native.compiler.2.2.10-rel-29722-00.nupkg 40ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:24:21.9456942Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.win10-arm64.microsoft.net.native.compiler/index.json 396ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:24:21.9637070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.win10-arm64.microsoft.net.native.compiler/2.2.10-rel-29722-00/runtime.win10-arm64.microsoft.net.native.compiler.2.2.10-rel-29722-00.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:24:22.0010248Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.win10-arm64.microsoft.net.native.compiler/2.2.10-rel-29722-00/runtime.win10-arm64.microsoft.net.native.compiler.2.2.10-rel-29722-00.nupkg 37ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:25:24.8204460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.win10-arm.microsoft.net.native.sharedlibrary/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:25:24.9046780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.win10-arm.microsoft.net.native.sharedlibrary/index.json 84ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:25:24.9180657Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.win10-arm.microsoft.net.native.sharedlibrary/2.2.8-rel-29722-00/runtime.win10-arm.microsoft.net.native.sharedlibrary.2.2.8-rel-29722-00.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:25:24.9476834Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.win10-arm.microsoft.net.native.sharedlibrary/2.2.8-rel-29722-00/runtime.win10-arm.microsoft.net.native.sharedlibrary.2.2.8-rel-29722-00.nupkg 29ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:25:25.0933544Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.win10-x64.microsoft.net.native.sharedlibrary/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:25:25.1893011Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.win10-x64.microsoft.net.native.sharedlibrary/index.json 95ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:25:25.1975569Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.win10-x64.microsoft.net.native.sharedlibrary/2.2.8-rel-29722-00/runtime.win10-x64.microsoft.net.native.sharedlibrary.2.2.8-rel-29722-00.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:25:25.2301287Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.win10-x64.microsoft.net.native.sharedlibrary/2.2.8-rel-29722-00/runtime.win10-x64.microsoft.net.native.sharedlibrary.2.2.8-rel-29722-00.nupkg 32ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:25:28.6255706Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.win10-arm64.microsoft.net.native.sharedlibrary/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:25:28.7058570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.win10-arm64.microsoft.net.native.sharedlibrary/index.json 80ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:25:28.7238192Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.win10-arm64.microsoft.net.native.sharedlibrary/2.2.8-rel-29722-00/runtime.win10-arm64.microsoft.net.native.sharedlibrary.2.2.8-rel-29722-00.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:25:28.8298605Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.win10-arm64.microsoft.net.native.sharedlibrary/2.2.8-rel-29722-00/runtime.win10-arm64.microsoft.net.native.sharedlibrary.2.2.8-rel-29722-00.nupkg 105ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:25:34.6819334Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.win10-x86.microsoft.net.native.sharedlibrary/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:25:34.9264490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.win10-x86.microsoft.net.native.sharedlibrary/index.json 244ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:25:34.9320331Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.win10-x86.microsoft.net.native.sharedlibrary/2.2.8-rel-29722-00/runtime.win10-x86.microsoft.net.native.sharedlibrary.2.2.8-rel-29722-00.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:25:34.9833534Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.win10-x86.microsoft.net.native.sharedlibrary/2.2.8-rel-29722-00/runtime.win10-x86.microsoft.net.native.sharedlibrary.2.2.8-rel-29722-00.nupkg 51ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:42.0079496Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:42.2440356Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary 2.2.8-rel-29722-00","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:42.2810016Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary 2.2.8-rel-29722-00","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:42.3445743Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of runtime.win10-x86.Microsoft.Net.Native.SharedLibrary 2.2.8-rel-29722-00","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:42.3483946Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of runtime.win10-x86.Microsoft.Net.Native.SharedLibrary 2.2.8-rel-29722-00","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:42.3550456Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of runtime.win10-x64.Microsoft.Net.Native.SharedLibrary 2.2.8-rel-29722-00","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:42.3579438Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of runtime.win10-x64.Microsoft.Net.Native.SharedLibrary 2.2.8-rel-29722-00","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:42.3644832Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of runtime.win10-arm.Microsoft.Net.Native.SharedLibrary 2.2.8-rel-29722-00","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:42.3678111Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of runtime.win10-arm.Microsoft.Net.Native.SharedLibrary 2.2.8-rel-29722-00","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:42.3747991Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk 2.2.12","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:42.3781150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk 2.2.12","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:42.3845485Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk 2.2.12","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:42.3882668Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk 2.2.12","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:42.3952140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk 2.2.12","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:42.3985545Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk 2.2.12","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:42.4060455Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of runtime.win10-arm64.Microsoft.Net.Native.Compiler 2.2.10-rel-29722-00","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:42.4094843Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of runtime.win10-arm64.Microsoft.Net.Native.Compiler 2.2.10-rel-29722-00","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:42.4165113Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of runtime.win10-x86.Microsoft.Net.Native.Compiler 2.2.10-rel-29722-00","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:42.4195018Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of runtime.win10-x86.Microsoft.Net.Native.Compiler 2.2.10-rel-29722-00","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:42.4257973Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of runtime.win10-x64.Microsoft.Net.Native.Compiler 2.2.10-rel-29722-00","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:42.4287667Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of runtime.win10-x64.Microsoft.Net.Native.Compiler 2.2.10-rel-29722-00","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:42.4355342Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of runtime.win10-arm.Microsoft.Net.Native.Compiler 2.2.10-rel-29722-00","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:42.4393716Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of runtime.win10-arm.Microsoft.Net.Native.Compiler 2.2.10-rel-29722-00","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:42.4462332Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of Microsoft.NETCore.Platforms 2.1.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:42.4494700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of Microsoft.NETCore.Platforms 2.1.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:42.4569079Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of Microsoft.Net.UWPCoreRuntimeSdk 2.2.12","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:42.4602918Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of Microsoft.Net.UWPCoreRuntimeSdk 2.2.12","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:42.4671751Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of Microsoft.Net.Native.Compiler 2.2.10-rel-29722-00","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:42.4706133Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of Microsoft.Net.Native.Compiler 2.2.10-rel-29722-00","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:42.4780698Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of Microsoft.UI.Xaml 2.4.3","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:42.4814714Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of Microsoft.UI.Xaml 2.4.3","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:42.4884734Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of Win2D.uwp 1.20.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:42.4918254Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of Win2D.uwp 1.20.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:42.5956098Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"System.Security.Cryptography.Pkcs, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a","Extension":"UA_NuGet6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:27:43.6575637Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk.2.2.12 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:43.6575637Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk.2.2.12 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:43.6575631Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk.2.2.12 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:43.6575700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: Win2D.uwp.1.20.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:44.0048766Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed Win2D.uwp 1.20.0 from https://api.nuget.org/v3/index.json with content hash sFyNT2EiV6vmEFMrkiJdSolaKNyOyk+kfjgvXN8XqUhdEPqBd2zPrFdl7SojNHQGm2Br6JLIBOdrj9fB1Qy4GA==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:44.0176221Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of Microsoft.NETCore.UniversalWindowsPlatform 6.2.12","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:44.0228298Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of Microsoft.NETCore.UniversalWindowsPlatform 6.2.12","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:44.0689739Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: runtime.win10-x64.Microsoft.Net.Native.Compiler.2.2.10-rel-29722-00 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:44.1694160Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: runtime.win10-x86.Microsoft.Net.Native.Compiler.2.2.10-rel-29722-00 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:44.1864266Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: Microsoft.NETCore.UniversalWindowsPlatform.6.2.12 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:44.1910315Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: runtime.win10-arm.Microsoft.Net.Native.Compiler.2.2.10-rel-29722-00 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:44.2962434Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: runtime.win10-arm64.Microsoft.Net.Native.Compiler.2.2.10-rel-29722-00 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:44.4234338Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed runtime.win10-x64.Microsoft.Net.UWPCoreRuntimeSdk 2.2.12 from https://api.nuget.org/v3/index.json with content hash hlbwt6KW5A+pCgDiBYt5BrTfSDZgsVuKeq4uMARX5j95otN2mrbyRT9WtV82tiW6sh4YCXvjiFVb9O57x0HrDg==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:44.4242270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of Xamarin.Forms 5.0.0.2083","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:44.4266452Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed runtime.win10-x86.Microsoft.Net.UWPCoreRuntimeSdk 2.2.12 from https://api.nuget.org/v3/index.json with content hash saSRotvYwwuShD6MGVrv5v3lKdlvimzxUHi8yTnXapgPCFwu5j+sIFhC+yy02ZK8zkBSUIFjEtFeXb/PpltqIg==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:44.4466169Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of Xamarin.Forms 5.0.0.2083","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:44.4656862Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: Microsoft.NETCore.Platforms.2.1.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:44.4865603Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed runtime.win10-arm.Microsoft.Net.UWPCoreRuntimeSdk 2.2.12 from https://api.nuget.org/v3/index.json with content hash YX12L3el/LKr/+51sCsWivbdk1r5Zl1Fta8pQOyxAawbfTDdPATeGv4deBkB6DpEK1yu/ADa6X0ujopz6lzWmw==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:44.5510563Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed Microsoft.NETCore.Platforms 2.1.0 from https://api.nuget.org/v3/index.json with content hash ok+RPAtESz/9MUXeIEz6Lv5XAGQsaNmEYXMsgVALj4D7kqC8gveKWXWXbufLySR2fWrwZf8smyN5RmHu0e4BHA==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:44.5845380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: Microsoft.Net.UWPCoreRuntimeSdk.2.2.12 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:44.6431770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed Microsoft.Net.UWPCoreRuntimeSdk 2.2.12 from https://api.nuget.org/v3/index.json with content hash IRpFXnKUrate/hZmDPhZv3ECd+q2Q/iD+NQ9oEd0JVQfvypxclAjeZr1mMggxF9eN6KWl9zBXIydxqD2yrt6vw==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:44.7811528Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: Microsoft.Net.Native.Compiler.2.2.10-rel-29722-00 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:44.8466003Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: Xamarin.Forms.5.0.0.2083 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:44.9348885Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary.2.2.8-rel-29722-00 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:45.0318495Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: Microsoft.UI.Xaml.2.4.3 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:45.2643345Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: runtime.win10-x86.Microsoft.Net.Native.SharedLibrary.2.2.8-rel-29722-00 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:45.3439144Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: runtime.win10-x64.Microsoft.Net.Native.SharedLibrary.2.2.8-rel-29722-00 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:45.4350362Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: runtime.win10-arm.Microsoft.Net.Native.SharedLibrary.2.2.8-rel-29722-00 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:45.5794508Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed Microsoft.NETCore.UniversalWindowsPlatform 6.2.12 from https://api.nuget.org/v3/index.json with content hash df3mwtb9FHbMNE9ddOqNQVdK5S2CQc/i+jWsYfiJxBkq0V+uVmRw/VicTeHRf+cQgEcSynnkOg7xgqQJSifb7w==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:45.6764909Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed Microsoft.UI.Xaml 2.4.3 from https://api.nuget.org/v3/index.json with content hash jGFY1bLlAQn88d5377Gis6CyeitbPzaYZpOKdPsgFztzccetElmSB9/2JUVtOFUeZcCjOpKSgFkKPFlMbgBwvg==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:45.7432878Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed Microsoft.Net.Native.Compiler 2.2.10-rel-29722-00 from https://api.nuget.org/v3/index.json with content hash zhPr5WeW8JQnt83lC0EM2kpp6zsKQQV9zQO48mh+f6aaK/eT8Zj/K7kmJ60KgP+WgWTfVGmrSp2TARd70jd62g==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:46.4239571Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed Xamarin.Forms 5.0.0.2083+716-sha.ec1520e32-azdo.4968107 from https://api.nuget.org/v3/index.json with content hash KDKdEIq8SA3zP8/qyJZ9isIsP1KRLvhxUohTM4GS4HOQkkK3FARvi/FJv91O4IJ/30ByJg88mBdKuiLMyL9Q+w==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:47.5234085Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed runtime.win10-arm.Microsoft.Net.Native.Compiler 2.2.10-rel-29722-00 from https://api.nuget.org/v3/index.json with content hash MRdlU6RC5zHeX+fqqotY8tvr6uCDJztpvj8eJ+b0S8nmmGJmYs2qO/j4vzodmlHF374rUt78b8tT6vb9ehxmcQ==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:47.6812146Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed runtime.win10-x64.Microsoft.Net.Native.Compiler 2.2.10-rel-29722-00 from https://api.nuget.org/v3/index.json with content hash arU9AO6QIrVSRBV83+6jgbNXWe/oTGGeVtHZzb86TPezeEVOWDp+40m4YrBp/L90G0yDrUlt1ekZuwYFUawc8Q==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:47.6876066Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed runtime.win10-x86.Microsoft.Net.Native.Compiler 2.2.10-rel-29722-00 from https://api.nuget.org/v3/index.json with content hash /FwdIs704RTEkxdXEJ/UDPk0MGo951TPhxAAiQVeGPn13crroZr+LHjRvbhfHnv6Sl1aHglhLB+5FxClsHOTCw==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:47.8826038Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed runtime.win10-arm64.Microsoft.Net.Native.Compiler 2.2.10-rel-29722-00 from https://api.nuget.org/v3/index.json with content hash ZF/ualE2u58JjIGT0MUA4glqFzx8fQCRksm+LnCzQSUzlr6VlH//zBqRJMB77K8WLxSPDB4lIV5K0tvTtBnqoA==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:50.5620659Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed runtime.win10-arm64.Microsoft.Net.Native.SharedLibrary 2.2.8-rel-29722-00 from https://api.nuget.org/v3/index.json with content hash IfrQPttlUx2fQTRsYNeF8ZpQAYmQOfcwSwTPvEXhMDVSRo2tjvi10jOiF4RxNX6Y+2plp/kkgJ/GgME8t1Jtvw==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:51.4306086Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed runtime.win10-x86.Microsoft.Net.Native.SharedLibrary 2.2.8-rel-29722-00 from https://api.nuget.org/v3/index.json with content hash 6GJiLd77ikW+coegj6QsHslJ3RtvsM0BlVw78EPNdvS9B2UKZHocShI2UvboV/vrg0A+2/v66KtY1xVEIRa+qQ==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:51.6817366Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed runtime.win10-arm.Microsoft.Net.Native.SharedLibrary 2.2.8-rel-29722-00 from https://api.nuget.org/v3/index.json with content hash v55o4C2ps+Cp32oWn5ugVq0Ztc72ykpFCsCc/oO6Y5UwDkZ9txmgPjas9LUVJzFduhw1Cj0XehTaLyVHoETC+w==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:51.8693331Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed runtime.win10-x64.Microsoft.Net.Native.SharedLibrary 2.2.8-rel-29722-00 from https://api.nuget.org/v3/index.json with content hash tyHCWyzJccI/NsSYmQTq6HUPi4MVhbYMLD3JV58nGBrLzyJhva9JrZxQdwEmaMuI7j6l1fdcgsPlf/jRknZerw==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:52.8339874Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:52.8708063Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:53.0406631Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:53.0408651Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e0e66b4d-cf98-460c-b02b-eb8234d306f6\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:53.0419922Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e0e66b4d-cf98-460c-b02b-eb8234d306f6\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:53.0425656Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:53.0443551Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:53.0562477Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:53.0564815Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:53.7089286Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:53.7090899Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2357b820-5e1e-46ad-b2b9-44875d0c1762\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:53.7100147Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2357b820-5e1e-46ad-b2b9-44875d0c1762\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:53.7102533Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:53.7328272Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:53.7703080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:53.7704309Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:53.7935008Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:53.7936100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\25fab6eb-38d2-492a-8071-85344b8f6d83\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:53.7941767Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\25fab6eb-38d2-492a-8071-85344b8f6d83\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:53.7943407Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:53.7944948Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:53.8237279Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:53.8238571Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:53.8725904Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:53.8727048Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2e3219b7-eb4a-4e05-900c-0b8526abb8fc\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:53.8730288Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2e3219b7-eb4a-4e05-900c-0b8526abb8fc\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:53.8731151Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:53.8905685Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:53.9036196Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:53.9164521Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:53.9166792Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package NETStandard.Library 2.0.3 is not compatible with net10 (.NETFramework,Version=v1.0). Package NETStandard.Library 2.0.3 supports: netstandard1.0 (.NETStandard,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:53.9374087Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:53.9374944Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b7c367fb-ea37-4682-8784-acaf6330850a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:53.9378516Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b7c367fb-ea37-4682-8784-acaf6330850a\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:53.9379409Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:53.9380199Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:53.9403890Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:53.9406789Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:53.9408159Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package NETStandard.Library 2.0.3 is not compatible with net10 (.NETFramework,Version=v1.0). Package NETStandard.Library 2.0.3 supports: netstandard1.0 (.NETStandard,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:53.9625028Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:53.9626786Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4bcd22db-2333-4e13-9eb0-a1f58cf4d79d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:53.9635794Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4bcd22db-2333-4e13-9eb0-a1f58cf4d79d\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:53.9637441Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:53.9750386Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.0192522Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.0194918Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.0381836Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.0383185Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\17670e4d-0ca1-4954-9436-668c13315216\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.0391051Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\17670e4d-0ca1-4954-9436-668c13315216\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.0393203Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.0396164Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.0467288Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.0468582Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.0494165Z","@mt":"Could not find an output type","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:27:54.0918452Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Select an entrypoint","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:27:54.1103109Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Select an entrypoint","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:27:54.1289250Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Select project to upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:27:54.1836037Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.1837203Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d86bf80d-8dcf-4c7b-90b9-2bead14dc779\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.1845022Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d86bf80d-8dcf-4c7b-90b9-2bead14dc779\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.1847153Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.1849537Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.1927876Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.1929789Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.2125304Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.2126631Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\172f81fc-f390-445e-9fda-083afe27dbd5\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.2133693Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\172f81fc-f390-445e-9fda-083afe27dbd5\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.2135600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.2137612Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.2470296Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.2472333Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.2526134Z","@mt":"Skip minimum dependency check because .NET MAUI support multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:27:54.2552984Z","@mt":"Could not find an output type","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:27:54.2594690Z","@mt":"Could not find an output type","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:27:54.2623784Z","@mt":"Project {Name} is of type .NET MAUI Target: MAUI head, migration to .NET MAUI requires to be multiplatform","Name":"PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:27:54.3044430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.3046268Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e46fc7e6-897f-4f7c-8ced-2b7379bf9167\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.3058873Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e46fc7e6-897f-4f7c-8ced-2b7379bf9167\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.3062442Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.3066030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.3177054Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.3180769Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.3483961Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.3486249Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\eb5eae28-287c-41e8-8dfe-0428db685f90\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.3498798Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\eb5eae28-287c-41e8-8dfe-0428db685f90\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.3502450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.3507458Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.3694390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.3697231Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.4142740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.4145309Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\65cea208-59d5-40b9-985d-f62e0afd55f8\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.4159114Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\65cea208-59d5-40b9-985d-f62e0afd55f8\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.4162775Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.4167086Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.4338849Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.4342212Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.4690722Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.4692879Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a05e5444-16a1-409f-81c8-62f3e96c83f4\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.4704099Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a05e5444-16a1-409f-81c8-62f3e96c83f4\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.4707455Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.4712307Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.4926778Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.4930587Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.5389027Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.5390787Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\87680cee-4f2e-4093-8c4a-a365d41b0d4d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.5401133Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\87680cee-4f2e-4093-8c4a-a365d41b0d4d\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.5403543Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.5406023Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.5606508Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.5609734Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.5902966Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.5904798Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\46ce8c4d-a242-4742-b2ce-8c467cf23582\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.5916097Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\46ce8c4d-a242-4742-b2ce-8c467cf23582\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.5919324Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.5921881Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.6021742Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.6023363Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.6162281Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Select project to upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:27:54.6166982Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:27:54.6497586Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Select project to upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep"} +{"@t":"2022-11-15T22:27:54.6922640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.6925080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1470581f-0d59-4f14-be60-0dcab23f6d37\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.6933756Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1470581f-0d59-4f14-be60-0dcab23f6d37\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.6936916Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.6939241Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.7068536Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.7070473Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.7350765Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.7353038Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\79c7c2aa-057f-4920-b023-d565dac786cc\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.7364528Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\79c7c2aa-057f-4920-b023-d565dac786cc\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.7367971Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.7372672Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.7508442Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.7512538Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.7545869Z","@mt":"Skip minimum dependency check because .NET MAUI support multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:27:54.7587474Z","@mt":"Could not find an output type","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:27:54.7592984Z","@mt":"Could not find an output type","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:27:54.7596649Z","@mt":"Project {Name} is of type .NET MAUI Target: MAUI head, migration to .NET MAUI requires to be multiplatform","Name":"PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:27:54.7940706Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.7943575Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ff0ac1cd-10bb-407e-b5ae-d3e9a0b39d28\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.7955602Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ff0ac1cd-10bb-407e-b5ae-d3e9a0b39d28\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.7958079Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.7960531Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.8035642Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.8037421Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.8329994Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.8332220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d3db573f-9af1-402d-bc94-8170e9f7beff\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.8344351Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d3db573f-9af1-402d-bc94-8170e9f7beff\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.8347851Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.8351377Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.8446484Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.8448567Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.8744064Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.8746039Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7b9d982d-94c6-4238-9e05-3cf63fe758e3\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.8756178Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7b9d982d-94c6-4238-9e05-3cf63fe758e3\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.8758763Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.8761828Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.8927938Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.8930114Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.9170112Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.9171616Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c940a7a2-956c-4b8c-ad56-634687d46571\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.9179726Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c940a7a2-956c-4b8c-ad56-634687d46571\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.9181857Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.9184628Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.9276256Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.9277978Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.9483038Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.9484261Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4692e51e-c5bf-4c16-8903-eeeb365e07a6\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.9490613Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4692e51e-c5bf-4c16-8903-eeeb365e07a6\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.9492326Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.9494055Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.9538510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.9539524Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.9736791Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.9738090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9c0e8356-0dea-4de5-a758-7db78e6cee4e\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.9746094Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9c0e8356-0dea-4de5-a758-7db78e6cee4e\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.9748250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.9750416Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.9830109Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:54.9831740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.0116768Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.0118479Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c7edb14b-ad2c-4d95-bddf-9442e91456c6\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.0127045Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c7edb14b-ad2c-4d95-bddf-9442e91456c6\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.0130259Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.0137707Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.0328548Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.0332183Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.0565084Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.0566536Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0468e945-aec2-4c5d-a021-513c1d01e937\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.0578403Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0468e945-aec2-4c5d-a021-513c1d01e937\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.0580605Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.0587891Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.0780388Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.0784086Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.1029778Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.1031347Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2d0e3bda-9062-4fee-bab6-5646ce954b12\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.1039393Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2d0e3bda-9062-4fee-bab6-5646ce954b12\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.1041624Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.1049157Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.1287846Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.1292089Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.1532387Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.1533703Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0cc27249-849f-4c5a-9c11-2223f115744b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.1541009Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0cc27249-849f-4c5a-9c11-2223f115744b\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.1543956Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.1548782Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.1678595Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.1683013Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.1980629Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.1982143Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\05330632-e666-4bda-a61d-635d32f5251f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.1986814Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\05330632-e666-4bda-a61d-635d32f5251f\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.1988060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.1991816Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.2115454Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.2117613Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.2262885Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.2263724Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\085b31d5-90b8-4547-8202-159fbff34157\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.2268227Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\085b31d5-90b8-4547-8202-159fbff34157\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.2269376Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.2275970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.2435359Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.2439067Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.2598008Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.2599377Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1d3762bf-65cb-446c-bb0b-d78fdf37df0b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.2603730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1d3762bf-65cb-446c-bb0b-d78fdf37df0b\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.2604997Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.2606236Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.2648458Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.2649334Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.2905599Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.2907242Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\bfa38b24-270b-4baa-9a8a-7e90bd44c518\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.2915468Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\bfa38b24-270b-4baa-9a8a-7e90bd44c518\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.2920150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.2922558Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.3000836Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.3001916Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.3217005Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.3218457Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6ee1aaff-a6ac-461b-8dab-53354730b731\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.3227082Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6ee1aaff-a6ac-461b-8dab-53354730b731\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.3230411Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.3233526Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.3373168Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.3375355Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.3574879Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.3576076Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d248c4f7-671e-4ad4-a139-7b3606ac54c7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.3583617Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d248c4f7-671e-4ad4-a139-7b3606ac54c7\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.3585799Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.3588731Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.3727003Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.3729524Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.3939984Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.3941357Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\df09e6d6-b122-494b-b692-055901d700c6\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.3949252Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\df09e6d6-b122-494b-b692-055901d700c6\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.3951512Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.3954346Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.4140762Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.4143275Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.4339030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.4340200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6faa10a0-1399-4f10-8089-0b3da4124906\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.4347908Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6faa10a0-1399-4f10-8089-0b3da4124906\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.4350162Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.4353034Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.4489476Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.4491923Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.4728855Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.4730257Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0f4c879c-09df-452d-8b6a-074fb63c6bf9\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.4737850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0f4c879c-09df-452d-8b6a-074fb63c6bf9\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.4740104Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.4742325Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.4857650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.4864676Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.4868083Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package NETStandard.Library 2.0.3 is not compatible with net10 (.NETFramework,Version=v1.0). Package NETStandard.Library 2.0.3 supports: netstandard1.0 (.NETStandard,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.5062513Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.5063679Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\96cd401c-46bf-46d1-83dc-64d1ee079340\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.5070983Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\96cd401c-46bf-46d1-83dc-64d1ee079340\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.5072998Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.5075204Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.5191875Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.5199183Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.5202625Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package NETStandard.Library 2.0.3 is not compatible with net10 (.NETFramework,Version=v1.0). Package NETStandard.Library 2.0.3 supports: netstandard1.0 (.NETStandard,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.5412752Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.5414315Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e26c589f-43cc-4d9f-86c1-4ab2b393bba1\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.5423598Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e26c589f-43cc-4d9f-86c1-4ab2b393bba1\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.5426124Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.5428343Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.5580730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.5589965Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.5594743Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package NETStandard.Library 2.0.3 is not compatible with net10 (.NETFramework,Version=v1.0). Package NETStandard.Library 2.0.3 supports: netstandard1.0 (.NETStandard,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.5881344Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.5883282Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7ed5aeef-f0df-483e-ba71-d3c480e1aa61\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.5892764Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7ed5aeef-f0df-483e-ba71-d3c480e1aa61\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.5895175Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.5897107Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.5977768Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.5986672Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.5989696Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package NETStandard.Library 2.0.3 is not compatible with net10 (.NETFramework,Version=v1.0). Package NETStandard.Library 2.0.3 supports: netstandard1.0 (.NETStandard,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.6301665Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.6303790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6e980a20-5f82-4c14-80b1-3cff60a2dc9e\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.6316327Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6e980a20-5f82-4c14-80b1-3cff60a2dc9e\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.6318744Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.6320693Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.6414011Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.6420845Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.6423792Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package NETStandard.Library 2.0.3 is not compatible with net10 (.NETFramework,Version=v1.0). Package NETStandard.Library 2.0.3 supports: netstandard1.0 (.NETStandard,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.6699694Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.6701532Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2a7cc141-ad21-46b4-aab2-1410d7f403ab\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.6712582Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2a7cc141-ad21-46b4-aab2-1410d7f403ab\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.6715549Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.6718118Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.6826554Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.6833653Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.6837136Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package NETStandard.Library 2.0.3 is not compatible with net10 (.NETFramework,Version=v1.0). Package NETStandard.Library 2.0.3 supports: netstandard1.0 (.NETStandard,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:27:55.6910766Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Select project to upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep"} +{"@t":"2022-11-15T22:27:55.7009466Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Back up project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:27:55.7126643Z","@mt":"Determining backup path","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:55.7132087Z","@mt":"Using backup path {BackupPath}","@l":"Debug","BackupPath":"C:\\code\\PlantLady.backup\\PlantLady","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:55.7133628Z","@mt":"Backup upgrade step initialized as incomplete; will backup to {BackupLocation}","@l":"Debug","BackupLocation":"C:\\code\\PlantLady.backup\\PlantLady","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:55.7135733Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Back up project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:27:55.7136719Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:27:55.7142571Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Back up project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:55.7265052Z","@mt":"Determining backup path","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:55.7266936Z","@mt":"Using backup path {BackupPath}","@l":"Debug","BackupPath":"C:\\code\\PlantLady.backup\\PlantLady","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:55.7301831Z","@mt":"Backing up {ProjectDir} to {BackupPath}","ProjectDir":"C:\\code\\PlantLady\\PlantLady\\PlantLady","BackupPath":"C:\\code\\PlantLady.backup\\PlantLady","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:55.7638820Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\App.xaml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\App.xaml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:55.7847510Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\App.xaml.cs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\App.xaml.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:55.8044977Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\AppShell.xaml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\AppShell.xaml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:55.8305630Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\AppShell.xaml.cs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\AppShell.xaml.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:55.8442036Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\AssemblyInfo.cs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\AssemblyInfo.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:55.8461865Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:55.8477381Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj.user","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\PlantLady.csproj.user","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:56.2421542Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\bin\\Debug\\net6.0-android\\PlantLady.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\bin\\Debug\\net6.0-android\\PlantLady.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:56.2576578Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\bin\\Debug\\net6.0-android\\PlantLady.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\bin\\Debug\\net6.0-android\\PlantLady.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:56.2731954Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\bin\\Debug\\net6.0-android\\PlantLady.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\bin\\Debug\\net6.0-android\\PlantLady.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:56.3293468Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\bin\\Debug\\net6.0-ios\\PlantLady.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\bin\\Debug\\net6.0-ios\\PlantLady.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:56.3509184Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\bin\\Debug\\net6.0-ios\\PlantLady.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\bin\\Debug\\net6.0-ios\\PlantLady.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:56.3711500Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\PlantLady.csproj.nuget.dgspec.json","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\PlantLady.csproj.nuget.dgspec.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:56.3727873Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\PlantLady.csproj.nuget.g.props","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\PlantLady.csproj.nuget.g.props","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:56.3746944Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\PlantLady.csproj.nuget.g.targets","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\PlantLady.csproj.nuget.g.targets","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:56.3775506Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\project.assets.json","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\project.assets.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:56.3938246Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\project.nuget.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\project.nuget.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:56.4163794Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\.NETCoreApp,Version=v6.0.AssemblyAttributes.cs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\.NETCoreApp,Version=v6.0.AssemblyAttributes.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:56.4304707Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\adb.props","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\adb.props","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:56.4431029Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\build.props","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\build.props","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:56.4603930Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\customview-map.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\customview-map.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:56.4777765Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\libraryimports.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\libraryimports.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:56.4922097Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\libraryprojectimports.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\libraryprojectimports.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:56.5142240Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\PlantLady.AssemblyInfo.cs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\PlantLady.AssemblyInfo.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:56.5293135Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\PlantLady.AssemblyInfoInputs.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\PlantLady.AssemblyInfoInputs.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:56.5447952Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\PlantLady.assets.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\PlantLady.assets.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:56.5561237Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\PlantLady.csproj.AssemblyReference.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\PlantLady.csproj.AssemblyReference.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:56.5575757Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\PlantLady.csproj.BuildWithSkipAnalyzers","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\PlantLady.csproj.BuildWithSkipAnalyzers","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:56.5677755Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\PlantLady.csproj.CoreCompileInputs.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\PlantLady.csproj.CoreCompileInputs.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:56.5788581Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\PlantLady.csproj.FileListAbsolute.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\PlantLady.csproj.FileListAbsolute.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:56.8322691Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\PlantLady.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\PlantLady.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:56.8498099Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\PlantLady.GeneratedMSBuildEditorConfig.editorconfig","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\PlantLady.GeneratedMSBuildEditorConfig.editorconfig","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:56.8549649Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\PlantLady.GlobalUsings.g.cs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\PlantLady.GlobalUsings.g.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:56.8734541Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\PlantLady.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\PlantLady.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:56.8746217Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\R.cs.flag","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\R.cs.flag","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:56.8987533Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:56.9001850Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\res.flag","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\res.flag","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:56.9287561Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\Resource.designer.cs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\Resource.designer.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:56.9304883Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\XamlC.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\XamlC.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:56.9449840Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\_IsIncrementalBuild","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\_IsIncrementalBuild","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:56.9662957Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\activity\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\activity\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:56.9717024Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\activity\\ktx\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\activity\\ktx\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:56.9774946Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\annotation\\experimental\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\annotation\\experimental\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:56.9963774Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\appcompat\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\appcompat\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.0014559Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\appcompat\\resources\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\appcompat\\resources\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.0165749Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\browser\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\browser\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.0307009Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\cardview\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\cardview\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.0507103Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\constraintlayout\\widget\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\constraintlayout\\widget\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.0682668Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\coordinatorlayout\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\coordinatorlayout\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.0824151Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\core\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\core\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.0884934Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\core\\ktx\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\core\\ktx\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.1069978Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\drawerlayout\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\drawerlayout\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.1120950Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\emoji2\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\emoji2\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.1166842Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\emoji2\\viewsintegration\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\emoji2\\viewsintegration\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.1301579Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\fragment\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\fragment\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.1347510Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\fragment\\ktx\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\fragment\\ktx\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.1399743Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\lifecycle\\ktx\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\lifecycle\\ktx\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.1443076Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\lifecycle\\livedata\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\lifecycle\\livedata\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.1486031Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\lifecycle\\livedata\\core\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\lifecycle\\livedata\\core\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.1530478Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\lifecycle\\livedata\\core\\ktx\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\lifecycle\\livedata\\core\\ktx\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.1576054Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\lifecycle\\process\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\lifecycle\\process\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.1741901Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\lifecycle\\runtime\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\lifecycle\\runtime\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.1910231Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\lifecycle\\viewmodel\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\lifecycle\\viewmodel\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.1959418Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\lifecycle\\viewmodel\\ktx\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\lifecycle\\viewmodel\\ktx\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.2001406Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\lifecycle\\viewmodel\\savedstate\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\lifecycle\\viewmodel\\savedstate\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.2169991Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\localbroadcastmanager\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\localbroadcastmanager\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.2342737Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\media\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\media\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.2518348Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\navigation\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\navigation\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.2571529Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\navigation\\common\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\navigation\\common\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.2748544Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\navigation\\fragment\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\navigation\\fragment\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.2916334Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\navigation\\ui\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\navigation\\ui\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.3081951Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\recyclerview\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\recyclerview\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.3236703Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\savedstate\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\savedstate\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.3381591Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\slidingpanelayout\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\slidingpanelayout\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.3538032Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\startup\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\startup\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.3742617Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\swiperefreshlayout\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\swiperefreshlayout\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.3914946Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\transition\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\transition\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.4055940Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\viewpager2\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\viewpager2\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.4229351Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\window\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\window\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.4395194Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\com\\bumptech\\glide\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\com\\bumptech\\glide\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.4611651Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\com\\google\\android\\material\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\com\\google\\android\\material\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.4856762Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\com\\microsoft\\maui\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\android\\src\\com\\microsoft\\maui\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.4908159Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\designtime\\build.props","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\designtime\\build.props","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.5051984Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\designtime\\libraryprojectimports.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\designtime\\libraryprojectimports.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.5243138Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\designtime\\Resource.designer.cs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\designtime\\Resource.designer.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.5386248Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\100.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\100.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.5501417Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\101.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\101.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.5671723Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\102.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\102.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.5779324Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\103.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\103.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.5939950Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\104.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\104.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.5969539Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\105.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\105.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.6077929Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\106.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\106.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.6104765Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\107.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\107.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.6137758Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\108.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\108.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.6181882Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\109.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\109.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.6212570Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\110.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\110.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.6317068Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\111.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\111.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.6351438Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\112.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\112.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.6390268Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\113.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\113.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.6422754Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\114.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\114.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.6456100Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\115.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\115.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.6487680Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\116.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\116.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.6520555Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\117.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\117.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.6551876Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\118.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\118.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.6588008Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\119.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\119.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.6622226Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\120.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\120.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.6768430Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\121.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\121.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.6902994Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\122.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\122.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.7014055Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.7145517Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\124.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\124.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.7180867Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\125.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\125.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.7306493Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.7339885Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\127.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\127.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.7373274Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\128.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\128.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.7516688Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\129.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\129.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.7549716Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\130.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\130.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.7677890Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\131.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\131.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.7796972Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\132.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\132.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.7917195Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\133.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\133.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.8051434Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\134.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\134.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.8197729Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\135.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\135.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.8341275Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\136.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\136.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.8488309Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.8639060Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\138.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\138.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.8789782Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\139.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\139.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.8935895Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\140.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\140.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.9046857Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.9138694Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\142.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\142.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.9214338Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\143.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\143.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.9307427Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\144.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\144.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.9387726Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\145.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\145.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.9469910Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\146.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\146.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.9492893Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.9556425Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\148.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\148.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.9639516Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\149.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\149.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.9714225Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\150.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\150.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.9786960Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\151.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\151.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.9860661Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\152.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\152.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:57.9966375Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\153.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\153.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.0055412Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.0176572Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\155.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\155.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.0284858Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\156.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\156.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.0317121Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\88.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\88.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.0350288Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\89.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\89.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.0484171Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\90.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\90.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.0631908Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\91.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\91.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.0813864Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.0852169Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\93.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\93.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.0891852Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\94.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\94.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.1063738Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\95.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\95.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.1236209Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\96.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\96.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.1275676Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\97.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\97.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.1439887Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\98.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\98.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.1603561Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\99.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\99.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.1815831Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\map.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\map.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.2041364Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\100\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\100\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.3393338Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\100\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\100\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.3478608Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\100\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\100\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.3584450Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\101\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\101\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.4171376Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\101\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\101\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.4286901Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\101\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\101\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.4356944Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\101\\jl\\proguard.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\101\\jl\\proguard.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.4365384Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\101\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\101\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.4372649Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\101\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\101\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.4436532Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\101\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\101\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.4503511Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\101\\jl\\flat\\101.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\101\\jl\\flat\\101.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.4583291Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\101\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\101\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.4646925Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\101\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\101\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.4716134Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\102\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\102\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.4823798Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\102\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\102\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.4930046Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\102\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\102\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.4934813Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\102\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\102\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.4944449Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\102\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\102\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.4970219Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\102\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\102\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.4991441Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\102\\jl\\flat\\102.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\102\\jl\\flat\\102.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.5033697Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\102\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\102\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.5062309Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\102\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\102\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.5183959Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\103\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\103\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.5299526Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\103\\jl\\annotations.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\103\\jl\\annotations.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.5470226Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\103\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\103\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.5557322Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\103\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\103\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.5564811Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\103\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\103\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.5576269Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\103\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\103\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.5597709Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\103\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\103\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.5626311Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\103\\jl\\flat\\103.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\103\\jl\\flat\\103.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.6215328Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\103\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\103\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.6247849Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\103\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\103\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.6337898Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.6421775Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\annotations.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\annotations.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.6500829Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\baseline-prof.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\baseline-prof.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.6635947Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.6744520Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.6828201Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\proguard.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\proguard.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.6838134Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.6860690Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.6961300Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.7078502Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\flat\\104.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\flat\\104.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.7159992Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.7307721Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\res\\anim\\fragment_fast_out_extra_slow_in.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\res\\anim\\fragment_fast_out_extra_slow_in.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.7442931Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\res\\anim-v21\\fragment_fast_out_extra_slow_in.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\res\\anim-v21\\fragment_fast_out_extra_slow_in.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.7585205Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\res\\animator\\fragment_close_enter.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\res\\animator\\fragment_close_enter.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.7713880Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\res\\animator\\fragment_close_exit.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\res\\animator\\fragment_close_exit.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.7838994Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\res\\animator\\fragment_fade_enter.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\res\\animator\\fragment_fade_enter.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.7942499Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\res\\animator\\fragment_fade_exit.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\res\\animator\\fragment_fade_exit.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.8032467Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\res\\animator\\fragment_open_enter.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\res\\animator\\fragment_open_enter.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.8113518Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\res\\animator\\fragment_open_exit.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\res\\animator\\fragment_open_exit.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.8187525Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.8281912Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.8351930Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\annotations.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\annotations.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.8449595Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.8538562Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.8605444Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.8699683Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.8780067Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\flat\\105.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\flat\\105.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.8850645Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.8933047Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\106\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\106\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.9595925Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\106\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\106\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.9674205Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\106\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\106\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:58.9774334Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\107\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\107\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.0100866Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\107\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\107\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.0108393Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\107\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\107\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.0200588Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\108\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\108\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.0306574Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\108\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\108\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.0404309Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\108\\jl\\proguard.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\108\\jl\\proguard.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.0481958Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\108\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\108\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.0511489Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\109\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\109\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.0654139Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\109\\jl\\annotations.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\109\\jl\\annotations.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.0893432Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\109\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\109\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.1113746Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\109\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\109\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.1275919Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\109\\jl\\proguard.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\109\\jl\\proguard.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.1436651Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\109\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\109\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.1631931Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\109\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\109\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.1801066Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\109\\jl\\flat\\109.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\109\\jl\\flat\\109.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.2012821Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\109\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\109\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.2162791Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\109\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\109\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.2368109Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\110\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\110\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.2512521Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\110\\jl\\baseline-prof.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\110\\jl\\baseline-prof.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.3045740Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\110\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\110\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.3218030Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\110\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\110\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.3340948Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\110\\jl\\proguard.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\110\\jl\\proguard.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.3357423Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\110\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\110\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.3390396Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\110\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\110\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.3537449Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\110\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\110\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.3680249Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\110\\jl\\flat\\110.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\110\\jl\\flat\\110.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.3893730Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\110\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\110\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.4062051Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\110\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\110\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.4262409Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\111\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\111\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.4448966Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\111\\jl\\annotations.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\111\\jl\\annotations.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.5666844Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\111\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\111\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.5692823Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\111\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\111\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.5745909Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\112\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\112\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.6387805Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\112\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\112\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.6601061Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\112\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\112\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.6615295Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\112\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\112\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.6637397Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\112\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\112\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.6673726Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\112\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\112\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.6719687Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\112\\jl\\flat\\112.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\112\\jl\\flat\\112.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.6803732Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\112\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\112\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.6858366Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\112\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\112\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.6917138Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\113\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\113\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.8323587Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\113\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\113\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.8552808Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\113\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\113\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.8707707Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\113\\jl\\proguard.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\113\\jl\\proguard.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.8727228Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\113\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\113\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.8738336Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\113\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\113\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.8882753Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\113\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\113\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.8927773Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\113\\jl\\flat\\113.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\113\\jl\\flat\\113.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.9013107Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\113\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\113\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.9075358Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\113\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\113\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:27:59.9289295Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\114\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\114\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:00.0524899Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\114\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\114\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:00.0552143Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\114\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\114\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:00.0726766Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\115\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\115\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:00.1117296Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\115\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\115\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:00.1247326Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\115\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\115\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:00.1303828Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\116\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\116\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:00.1435754Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\116\\jl\\annotations.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\116\\jl\\annotations.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:00.1614432Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\116\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\116\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:00.1782955Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\116\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\116\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:00.1799717Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\116\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\116\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:00.1814080Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\116\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\116\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:00.1865803Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\116\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\116\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:00.1911394Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\116\\jl\\flat\\116.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\116\\jl\\flat\\116.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:00.2247737Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\116\\jl\\libs\\repackaged.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\116\\jl\\libs\\repackaged.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:00.2350335Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\116\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\116\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:00.2480635Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\116\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\116\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:00.2542287Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\117\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\117\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:00.4454170Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\117\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\117\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:00.4711869Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\117\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\117\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:00.4728883Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\117\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\117\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:00.4746838Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\117\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\117\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:00.4783170Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\117\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\117\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:00.4831315Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\117\\jl\\flat\\117.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\117\\jl\\flat\\117.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:00.4928752Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\117\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\117\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:00.4992196Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\117\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\117\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:00.5151281Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\118\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\118\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:00.5326752Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\118\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\118\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:00.5368108Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\118\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\118\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:00.5427065Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\119\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\119\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:00.5588403Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\119\\jl\\annotations.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\119\\jl\\annotations.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:00.6971244Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\119\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\119\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:00.7165334Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\119\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\119\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:00.7276496Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\119\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\119\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:00.7312083Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\119\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\119\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:00.7470427Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\119\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\119\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:00.7625188Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\119\\jl\\flat\\119.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\119\\jl\\flat\\119.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:00.7775404Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\119\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\119\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:00.7938326Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\120\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\120\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:00.9115762Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\120\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\120\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:00.9130478Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\120\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\120\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:00.9356835Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\121\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\121\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:00.9571062Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\121\\jl\\annotations.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\121\\jl\\annotations.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.1629669Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\121\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\121\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.1844860Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\121\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\121\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.2001241Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\121\\jl\\proguard.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\121\\jl\\proguard.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.2137821Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\121\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\121\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.2180716Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\121\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\121\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.2363717Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\121\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\121\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.2583263Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\121\\jl\\flat\\121.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\121\\jl\\flat\\121.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.2785351Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\121\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\121\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.2980203Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\121\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\121\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.3046500Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\122\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\122\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.3357037Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\122\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\122\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.3610753Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\122\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\122\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.3626911Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\122\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\122\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.3667185Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\122\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\122\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.3874799Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\122\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\122\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.4095600Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\122\\jl\\flat\\122.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\122\\jl\\flat\\122.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.4179350Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\122\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\122\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.4402688Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\122\\jl\\res\\drawable\\abc_vector_test.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\122\\jl\\res\\drawable\\abc_vector_test.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.4572836Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\122\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\122\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.4638935Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.4847563Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\annotations.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\annotations.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.5093348Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.5280154Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.5463529Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\proguard.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\proguard.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.5658499Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.5841500Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.6121294Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.6437313Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\flat\\123.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\flat\\123.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.6515741Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.6663845Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\abc_fade_in.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\abc_fade_in.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.6821819Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\abc_fade_out.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\abc_fade_out.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.7004524Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\abc_grow_fade_in_from_bottom.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\abc_grow_fade_in_from_bottom.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.7187433Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\abc_popup_enter.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\abc_popup_enter.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.7369345Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\abc_popup_exit.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\abc_popup_exit.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.7513312Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\abc_shrink_fade_out_from_bottom.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\abc_shrink_fade_out_from_bottom.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.7651864Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\abc_slide_in_bottom.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\abc_slide_in_bottom.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.7794071Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\abc_slide_in_top.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\abc_slide_in_top.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.7934851Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\abc_slide_out_bottom.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\abc_slide_out_bottom.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.8137395Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\abc_slide_out_top.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\abc_slide_out_top.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.8311843Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\abc_tooltip_enter.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\abc_tooltip_enter.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.8469833Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\abc_tooltip_exit.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\abc_tooltip_exit.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.8663295Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\btn_checkbox_to_checked_box_inner_merged_animation.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\btn_checkbox_to_checked_box_inner_merged_animation.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.8826419Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\btn_checkbox_to_checked_box_outer_merged_animation.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\btn_checkbox_to_checked_box_outer_merged_animation.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.9027698Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\btn_checkbox_to_checked_icon_null_animation.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\btn_checkbox_to_checked_icon_null_animation.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.9242780Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\btn_checkbox_to_unchecked_box_inner_merged_animation.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\btn_checkbox_to_unchecked_box_inner_merged_animation.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.9467223Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\btn_checkbox_to_unchecked_check_path_merged_animation.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\btn_checkbox_to_unchecked_check_path_merged_animation.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.9686438Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\btn_checkbox_to_unchecked_icon_null_animation.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\btn_checkbox_to_unchecked_icon_null_animation.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:01.9861445Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\btn_radio_to_off_mtrl_dot_group_animation.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\btn_radio_to_off_mtrl_dot_group_animation.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.0018278Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\btn_radio_to_off_mtrl_ring_outer_animation.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\btn_radio_to_off_mtrl_ring_outer_animation.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.0179588Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\btn_radio_to_off_mtrl_ring_outer_path_animation.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\btn_radio_to_off_mtrl_ring_outer_path_animation.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.0361055Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\btn_radio_to_on_mtrl_dot_group_animation.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\btn_radio_to_on_mtrl_dot_group_animation.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.0553798Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\btn_radio_to_on_mtrl_ring_outer_animation.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\btn_radio_to_on_mtrl_ring_outer_animation.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.0740374Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\btn_radio_to_on_mtrl_ring_outer_path_animation.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\anim\\btn_radio_to_on_mtrl_ring_outer_path_animation.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.0906915Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color\\abc_background_cache_hint_selector_material_dark.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color\\abc_background_cache_hint_selector_material_dark.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.1082327Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color\\abc_background_cache_hint_selector_material_light.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color\\abc_background_cache_hint_selector_material_light.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.1257022Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color\\abc_btn_colored_borderless_text_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color\\abc_btn_colored_borderless_text_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.1440804Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color\\abc_btn_colored_text_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color\\abc_btn_colored_text_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.1640434Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color\\abc_hint_foreground_material_dark.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color\\abc_hint_foreground_material_dark.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.1799802Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color\\abc_hint_foreground_material_light.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color\\abc_hint_foreground_material_light.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.1961831Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color\\abc_primary_text_disable_only_material_dark.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color\\abc_primary_text_disable_only_material_dark.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.2138777Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color\\abc_primary_text_disable_only_material_light.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color\\abc_primary_text_disable_only_material_light.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.2304823Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color\\abc_primary_text_material_dark.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color\\abc_primary_text_material_dark.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.2447356Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color\\abc_primary_text_material_light.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color\\abc_primary_text_material_light.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.2590279Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color\\abc_search_url_text.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color\\abc_search_url_text.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.2713695Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color\\abc_secondary_text_material_dark.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color\\abc_secondary_text_material_dark.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.2836290Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color\\abc_secondary_text_material_light.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color\\abc_secondary_text_material_light.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.2972594Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color\\abc_tint_btn_checkable.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color\\abc_tint_btn_checkable.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.3122327Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color\\abc_tint_default.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color\\abc_tint_default.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.3297038Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color\\abc_tint_edittext.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color\\abc_tint_edittext.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.3447596Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color\\abc_tint_seek_thumb.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color\\abc_tint_seek_thumb.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.3658492Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color\\abc_tint_spinner.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color\\abc_tint_spinner.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.3816429Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color\\abc_tint_switch_track.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color\\abc_tint_switch_track.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.3994393Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color\\switch_thumb_material_dark.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color\\switch_thumb_material_dark.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.4142329Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color\\switch_thumb_material_light.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color\\switch_thumb_material_light.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.4348795Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color-v21\\abc_btn_colored_borderless_text_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color-v21\\abc_btn_colored_borderless_text_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.4544128Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color-v23\\abc_btn_colored_borderless_text_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color-v23\\abc_btn_colored_borderless_text_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.4724657Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color-v23\\abc_btn_colored_text_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color-v23\\abc_btn_colored_text_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.4937758Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color-v23\\abc_color_highlight_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color-v23\\abc_color_highlight_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.5129732Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color-v23\\abc_tint_btn_checkable.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color-v23\\abc_tint_btn_checkable.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.5338746Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color-v23\\abc_tint_default.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color-v23\\abc_tint_default.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.5514899Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color-v23\\abc_tint_edittext.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color-v23\\abc_tint_edittext.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.5691297Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color-v23\\abc_tint_seek_thumb.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color-v23\\abc_tint_seek_thumb.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.5730954Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color-v23\\abc_tint_spinner.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color-v23\\abc_tint_spinner.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.5898449Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color-v23\\abc_tint_switch_track.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\color-v23\\abc_tint_switch_track.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.6082849Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_btn_borderless_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_btn_borderless_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.6218922Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_btn_check_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_btn_check_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.6373391Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_btn_check_material_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_btn_check_material_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.6529662Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_btn_colored_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_btn_colored_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.6676594Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_btn_default_mtrl_shape.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_btn_default_mtrl_shape.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.6814851Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_btn_radio_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_btn_radio_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.6972042Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_btn_radio_material_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_btn_radio_material_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.7119465Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_cab_background_internal_bg.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_cab_background_internal_bg.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.7288961Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_cab_background_top_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_cab_background_top_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.7485735Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_dialog_material_background.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_dialog_material_background.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.7627629Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_edit_text_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_edit_text_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.7830797Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_ic_ab_back_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_ic_ab_back_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.8040275Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_ic_arrow_drop_right_black_24dp.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_ic_arrow_drop_right_black_24dp.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.8184826Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_ic_clear_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_ic_clear_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.8329772Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_ic_go_search_api_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_ic_go_search_api_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.8532226Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_ic_menu_copy_mtrl_am_alpha.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_ic_menu_copy_mtrl_am_alpha.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.8725432Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_ic_menu_cut_mtrl_alpha.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_ic_menu_cut_mtrl_alpha.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.8923260Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_ic_menu_overflow_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_ic_menu_overflow_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.9110504Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_ic_menu_paste_mtrl_am_alpha.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_ic_menu_paste_mtrl_am_alpha.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.9304884Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_ic_menu_selectall_mtrl_alpha.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_ic_menu_selectall_mtrl_alpha.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.9445037Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_ic_menu_share_mtrl_alpha.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_ic_menu_share_mtrl_alpha.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.9653323Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_ic_search_api_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_ic_search_api_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:02.9851071Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_ic_voice_search_api_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_ic_voice_search_api_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.0079638Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_item_background_holo_dark.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_item_background_holo_dark.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.0227360Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_item_background_holo_light.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_item_background_holo_light.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.0416018Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_list_divider_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_list_divider_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.0612545Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_list_selector_background_transition_holo_dark.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_list_selector_background_transition_holo_dark.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.0808389Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_list_selector_background_transition_holo_light.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_list_selector_background_transition_holo_light.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.0975933Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_list_selector_holo_dark.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_list_selector_holo_dark.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.1179384Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_list_selector_holo_light.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_list_selector_holo_light.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.1314721Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_ratingbar_indicator_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_ratingbar_indicator_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.1357839Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_ratingbar_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_ratingbar_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.1391908Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_ratingbar_small_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_ratingbar_small_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.1603095Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_seekbar_thumb_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_seekbar_thumb_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.1796171Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_seekbar_tick_mark_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_seekbar_tick_mark_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.1943186Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_seekbar_track_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_seekbar_track_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.2149091Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_spinner_textfield_background_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_spinner_textfield_background_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.2355678Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_star_black_48dp.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_star_black_48dp.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.2540195Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_star_half_black_48dp.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_star_half_black_48dp.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.2735454Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_switch_thumb_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_switch_thumb_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.2930127Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_tab_indicator_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_tab_indicator_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.3140923Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_textfield_search_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_textfield_search_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.3353754Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_text_cursor_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_text_cursor_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.3555647Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\btn_checkbox_checked_mtrl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\btn_checkbox_checked_mtrl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.3682214Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\btn_checkbox_checked_to_unchecked_mtrl_animation.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\btn_checkbox_checked_to_unchecked_mtrl_animation.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.3786506Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\btn_checkbox_unchecked_mtrl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\btn_checkbox_unchecked_mtrl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.3918063Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\btn_checkbox_unchecked_to_checked_mtrl_animation.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\btn_checkbox_unchecked_to_checked_mtrl_animation.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.4078223Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\btn_radio_off_mtrl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\btn_radio_off_mtrl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.4232611Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\btn_radio_off_to_on_mtrl_animation.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\btn_radio_off_to_on_mtrl_animation.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.4444439Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\btn_radio_on_mtrl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\btn_radio_on_mtrl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.4647274Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\btn_radio_on_to_off_mtrl_animation.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\btn_radio_on_to_off_mtrl_animation.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.4835057Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\test_level_drawable.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\test_level_drawable.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.5024396Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\tooltip_frame_dark.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\tooltip_frame_dark.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.5213587Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\tooltip_frame_light.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\tooltip_frame_light.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.5389677Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.5492373Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_btn_check_to_on_mtrl_000.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_btn_check_to_on_mtrl_000.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.5659646Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_btn_check_to_on_mtrl_015.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_btn_check_to_on_mtrl_015.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.5820351Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_btn_radio_to_on_mtrl_000.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_btn_radio_to_on_mtrl_000.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.5947828Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_btn_radio_to_on_mtrl_015.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_btn_radio_to_on_mtrl_015.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.6100593Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.6260352Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.6418938Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_cab_background_top_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_cab_background_top_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.6580796Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_ic_commit_search_api_mtrl_alpha.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_ic_commit_search_api_mtrl_alpha.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.6736134Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_list_divider_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_list_divider_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.6883509Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_list_focused_holo.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_list_focused_holo.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.7010095Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_list_longpressed_holo.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_list_longpressed_holo.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.7113662Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_list_pressed_holo_dark.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_list_pressed_holo_dark.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.7238595Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_list_pressed_holo_light.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_list_pressed_holo_light.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.7404824Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_list_selector_disabled_holo_dark.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_list_selector_disabled_holo_dark.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.7514428Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_list_selector_disabled_holo_light.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_list_selector_disabled_holo_light.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.7679109Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.7863361Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_popup_background_mtrl_mult.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_popup_background_mtrl_mult.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.8068760Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.8200914Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.8336763Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.8517099Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.8621733Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.8781664Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_spinner_mtrl_am_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_spinner_mtrl_am_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.8892095Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_switch_track_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_switch_track_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.9047436Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.9150971Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_textfield_activated_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_textfield_activated_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.9260994Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_textfield_default_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_textfield_default_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.9373455Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.9493058Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.9667246Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_text_select_handle_left_mtrl.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_text_select_handle_left_mtrl.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.9781203Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_text_select_handle_middle_mtrl.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_text_select_handle_middle_mtrl.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:03.9892484Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_text_select_handle_right_mtrl.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-hdpi-v4\\abc_text_select_handle_right_mtrl.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.0066567Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-ldrtl-hdpi-v17\\abc_spinner_mtrl_am_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-ldrtl-hdpi-v17\\abc_spinner_mtrl_am_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.0269647Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-ldrtl-mdpi-v17\\abc_spinner_mtrl_am_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-ldrtl-mdpi-v17\\abc_spinner_mtrl_am_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.0393089Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-ldrtl-xhdpi-v17\\abc_spinner_mtrl_am_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-ldrtl-xhdpi-v17\\abc_spinner_mtrl_am_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.0487060Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-ldrtl-xxhdpi-v17\\abc_spinner_mtrl_am_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-ldrtl-xxhdpi-v17\\abc_spinner_mtrl_am_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.0562216Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-ldrtl-xxxhdpi-v17\\abc_spinner_mtrl_am_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-ldrtl-xxxhdpi-v17\\abc_spinner_mtrl_am_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.0655140Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.0759077Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_btn_check_to_on_mtrl_000.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_btn_check_to_on_mtrl_000.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.0854294Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_btn_check_to_on_mtrl_015.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_btn_check_to_on_mtrl_015.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.0996879Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_btn_radio_to_on_mtrl_000.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_btn_radio_to_on_mtrl_000.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.1107051Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_btn_radio_to_on_mtrl_015.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_btn_radio_to_on_mtrl_015.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.1252404Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.1403090Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.1517012Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_cab_background_top_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_cab_background_top_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.1627336Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_ic_commit_search_api_mtrl_alpha.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_ic_commit_search_api_mtrl_alpha.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.1663528Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_list_divider_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_list_divider_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.1767230Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_list_focused_holo.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_list_focused_holo.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.1921680Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_list_longpressed_holo.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_list_longpressed_holo.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.2033239Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_list_pressed_holo_dark.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_list_pressed_holo_dark.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.2147415Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_list_pressed_holo_light.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_list_pressed_holo_light.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.2306535Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_list_selector_disabled_holo_dark.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_list_selector_disabled_holo_dark.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.2473545Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_list_selector_disabled_holo_light.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_list_selector_disabled_holo_light.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.2585786Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.2749526Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_popup_background_mtrl_mult.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_popup_background_mtrl_mult.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.2910542Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.3017215Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.3127573Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.3291922Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.3425755Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.3589649Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_spinner_mtrl_am_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_spinner_mtrl_am_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.3710737Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_switch_track_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_switch_track_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.3814169Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.3974871Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_textfield_activated_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_textfield_activated_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.4079519Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_textfield_default_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_textfield_default_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.4183752Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.4385356Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.4522134Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_text_select_handle_left_mtrl.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_text_select_handle_left_mtrl.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.4742013Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_text_select_handle_middle_mtrl.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_text_select_handle_middle_mtrl.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.4889037Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_text_select_handle_right_mtrl.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-mdpi-v4\\abc_text_select_handle_right_mtrl.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.5116565Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-v21\\abc_action_bar_item_background_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-v21\\abc_action_bar_item_background_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.5301304Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-v21\\abc_btn_colored_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-v21\\abc_btn_colored_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.5473636Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-v21\\abc_dialog_material_background.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-v21\\abc_dialog_material_background.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.5678706Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-v21\\abc_edit_text_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-v21\\abc_edit_text_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.5868551Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-v21\\abc_list_divider_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-v21\\abc_list_divider_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.6073677Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-v23\\abc_control_background_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-v23\\abc_control_background_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.6269584Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-watch-v20\\abc_dialog_material_background.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-watch-v20\\abc_dialog_material_background.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.6438271Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.6554839Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_btn_check_to_on_mtrl_000.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_btn_check_to_on_mtrl_000.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.6670035Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_btn_check_to_on_mtrl_015.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_btn_check_to_on_mtrl_015.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.6828959Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_btn_radio_to_on_mtrl_000.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_btn_radio_to_on_mtrl_000.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.6992181Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_btn_radio_to_on_mtrl_015.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_btn_radio_to_on_mtrl_015.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.7099265Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.7166936Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.7236031Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_cab_background_top_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_cab_background_top_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.7379979Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_ic_commit_search_api_mtrl_alpha.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_ic_commit_search_api_mtrl_alpha.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.7412087Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_list_divider_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_list_divider_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.7569313Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_list_focused_holo.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_list_focused_holo.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.7721503Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_list_longpressed_holo.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_list_longpressed_holo.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.7826909Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_list_pressed_holo_dark.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_list_pressed_holo_dark.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.7978957Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_list_pressed_holo_light.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_list_pressed_holo_light.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.8135596Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_list_selector_disabled_holo_dark.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_list_selector_disabled_holo_dark.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.8298560Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_list_selector_disabled_holo_light.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_list_selector_disabled_holo_light.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.8458711Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.8615624Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_popup_background_mtrl_mult.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_popup_background_mtrl_mult.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.8772014Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.8935923Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.9059745Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.9217423Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.9373772Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.9579911Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_spinner_mtrl_am_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_spinner_mtrl_am_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.9691491Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_switch_track_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_switch_track_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:04.9858445Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.0008179Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_textfield_activated_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_textfield_activated_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.0171378Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_textfield_default_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_textfield_default_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.0332186Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.0486358Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.0608567Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_text_select_handle_left_mtrl.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_text_select_handle_left_mtrl.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.0725502Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_text_select_handle_middle_mtrl.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_text_select_handle_middle_mtrl.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.0834156Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_text_select_handle_right_mtrl.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xhdpi-v4\\abc_text_select_handle_right_mtrl.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.1008948Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.1119787Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_btn_check_to_on_mtrl_000.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_btn_check_to_on_mtrl_000.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.1287665Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_btn_check_to_on_mtrl_015.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_btn_check_to_on_mtrl_015.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.1442439Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_btn_radio_to_on_mtrl_000.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_btn_radio_to_on_mtrl_000.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.1595791Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_btn_radio_to_on_mtrl_015.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_btn_radio_to_on_mtrl_015.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.1748988Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.1904209Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.2061097Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_cab_background_top_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_cab_background_top_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.2169026Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_ic_commit_search_api_mtrl_alpha.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_ic_commit_search_api_mtrl_alpha.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.2308860Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_list_divider_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_list_divider_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.2444426Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_list_focused_holo.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_list_focused_holo.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.2565101Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_list_longpressed_holo.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_list_longpressed_holo.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.2700238Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_list_pressed_holo_dark.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_list_pressed_holo_dark.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.2825760Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_list_pressed_holo_light.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_list_pressed_holo_light.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.2964119Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_list_selector_disabled_holo_dark.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_list_selector_disabled_holo_dark.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.3086510Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_list_selector_disabled_holo_light.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_list_selector_disabled_holo_light.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.3235199Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.3368217Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_popup_background_mtrl_mult.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_popup_background_mtrl_mult.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.3500185Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.3640727Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.3831018Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.4041438Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.4221169Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.4459430Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_spinner_mtrl_am_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_spinner_mtrl_am_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.4634701Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_switch_track_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_switch_track_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.4855670Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.5020913Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_textfield_activated_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_textfield_activated_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.5156066Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_textfield_default_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_textfield_default_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.5268477Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.5415547Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.5550490Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_text_select_handle_left_mtrl.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_text_select_handle_left_mtrl.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.5713559Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_text_select_handle_middle_mtrl.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_text_select_handle_middle_mtrl.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.5821278Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_text_select_handle_right_mtrl.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxhdpi-v4\\abc_text_select_handle_right_mtrl.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.5996432Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxxhdpi-v4\\abc_btn_check_to_on_mtrl_000.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxxhdpi-v4\\abc_btn_check_to_on_mtrl_000.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.6159028Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxxhdpi-v4\\abc_btn_check_to_on_mtrl_015.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxxhdpi-v4\\abc_btn_check_to_on_mtrl_015.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.6315930Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxxhdpi-v4\\abc_btn_radio_to_on_mtrl_000.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxxhdpi-v4\\abc_btn_radio_to_on_mtrl_000.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.6477062Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxxhdpi-v4\\abc_btn_radio_to_on_mtrl_015.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxxhdpi-v4\\abc_btn_radio_to_on_mtrl_015.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.6634913Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxxhdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxxhdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.6795461Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxxhdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxxhdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.6956561Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.7115460Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.7227165Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxxhdpi-v4\\abc_spinner_mtrl_am_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxxhdpi-v4\\abc_spinner_mtrl_am_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.7337501Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxxhdpi-v4\\abc_switch_track_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxxhdpi-v4\\abc_switch_track_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.7448156Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxxhdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxxhdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.7615618Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxxhdpi-v4\\abc_text_select_handle_left_mtrl.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxxhdpi-v4\\abc_text_select_handle_left_mtrl.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.7724066Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxxhdpi-v4\\abc_text_select_handle_right_mtrl.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable-xxxhdpi-v4\\abc_text_select_handle_right_mtrl.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.7936561Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\interpolator\\btn_checkbox_checked_mtrl_animation_interpolator_0.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\interpolator\\btn_checkbox_checked_mtrl_animation_interpolator_0.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.8084965Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\interpolator\\btn_checkbox_checked_mtrl_animation_interpolator_1.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\interpolator\\btn_checkbox_checked_mtrl_animation_interpolator_1.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.8129025Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\interpolator\\btn_checkbox_unchecked_mtrl_animation_interpolator_0.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\interpolator\\btn_checkbox_unchecked_mtrl_animation_interpolator_0.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.8168750Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\interpolator\\btn_checkbox_unchecked_mtrl_animation_interpolator_1.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\interpolator\\btn_checkbox_unchecked_mtrl_animation_interpolator_1.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.8366320Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\interpolator\\btn_radio_to_off_mtrl_animation_interpolator_0.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\interpolator\\btn_radio_to_off_mtrl_animation_interpolator_0.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.8406728Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\interpolator\\btn_radio_to_on_mtrl_animation_interpolator_0.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\interpolator\\btn_radio_to_on_mtrl_animation_interpolator_0.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.8608196Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\interpolator\\fast_out_slow_in.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\interpolator\\fast_out_slow_in.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.8834087Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_action_bar_title_item.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_action_bar_title_item.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.9034856Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_action_bar_up_container.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_action_bar_up_container.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.9246242Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_action_menu_item_layout.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_action_menu_item_layout.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.9435662Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_action_menu_layout.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_action_menu_layout.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.9631586Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_action_mode_bar.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_action_mode_bar.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:05.9842072Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_action_mode_close_item_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_action_mode_close_item_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.0102320Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_activity_chooser_view.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_activity_chooser_view.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.0362763Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_activity_chooser_view_list_item.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_activity_chooser_view_list_item.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.0611596Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_alert_dialog_button_bar_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_alert_dialog_button_bar_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.0781765Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_alert_dialog_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_alert_dialog_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.0906867Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_alert_dialog_title_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_alert_dialog_title_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.1051874Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_cascading_menu_item_layout.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_cascading_menu_item_layout.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.1203138Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_dialog_title_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_dialog_title_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.1385458Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_expanded_menu_layout.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_expanded_menu_layout.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.1579813Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_list_menu_item_checkbox.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_list_menu_item_checkbox.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.1763138Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_list_menu_item_icon.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_list_menu_item_icon.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.1907318Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_list_menu_item_layout.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_list_menu_item_layout.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.2108529Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_list_menu_item_radio.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_list_menu_item_radio.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.2322137Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_popup_menu_header_item_layout.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_popup_menu_header_item_layout.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.2531270Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_popup_menu_item_layout.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_popup_menu_item_layout.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.2736731Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_screen_content_include.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_screen_content_include.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.2946371Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_screen_simple.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_screen_simple.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.3154484Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_screen_simple_overlay_action_mode.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_screen_simple_overlay_action_mode.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.3345412Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_screen_toolbar.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_screen_toolbar.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.3545085Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_search_dropdown_item_icons_2line.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_search_dropdown_item_icons_2line.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.3753340Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_search_view.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_search_view.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.3969875Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_select_dialog_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_select_dialog_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.4174473Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_tooltip.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\abc_tooltip.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.4388846Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\select_dialog_item_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\select_dialog_item_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.4592682Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\select_dialog_multichoice_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\select_dialog_multichoice_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.4804461Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\select_dialog_singlechoice_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\select_dialog_singlechoice_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.4967159Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\support_simple_spinner_dropdown_item.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout\\support_simple_spinner_dropdown_item.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.5182636Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout-v26\\abc_screen_toolbar.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout-v26\\abc_screen_toolbar.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.5413944Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout-watch-v20\\abc_alert_dialog_button_bar_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout-watch-v20\\abc_alert_dialog_button_bar_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.5669314Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout-watch-v20\\abc_alert_dialog_title_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\layout-watch-v20\\abc_alert_dialog_title_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.6047980Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.6256087Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-af\\values-af.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-af\\values-af.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.6498505Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-am\\values-am.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-am\\values-am.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.6724923Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-ar\\values-ar.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-ar\\values-ar.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.6958271Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-as\\values-as.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-as\\values-as.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.7188131Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-az\\values-az.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-az\\values-az.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.7418537Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-b+sr+Latn\\values-b+sr+Latn.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-b+sr+Latn\\values-b+sr+Latn.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.7645467Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-be\\values-be.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-be\\values-be.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.7879263Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-bg\\values-bg.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-bg\\values-bg.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.8109168Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-bn\\values-bn.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-bn\\values-bn.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.8348698Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-bs\\values-bs.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-bs\\values-bs.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.8587753Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-ca\\values-ca.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-ca\\values-ca.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.8826311Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-cs\\values-cs.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-cs\\values-cs.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.9004100Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-da\\values-da.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-da\\values-da.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.9216802Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-de\\values-de.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-de\\values-de.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.9433751Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-el\\values-el.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-el\\values-el.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.9682164Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-en-rAU\\values-en-rAU.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-en-rAU\\values-en-rAU.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.9745071Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-en-rCA\\values-en-rCA.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-en-rCA\\values-en-rCA.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.9810988Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-en-rGB\\values-en-rGB.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-en-rGB\\values-en-rGB.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:06.9875004Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-en-rIN\\values-en-rIN.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-en-rIN\\values-en-rIN.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.0079575Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-en-rXC\\values-en-rXC.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-en-rXC\\values-en-rXC.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.0286688Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-es\\values-es.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-es\\values-es.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.0568873Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-es-rUS\\values-es-rUS.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-es-rUS\\values-es-rUS.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.0802658Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-et\\values-et.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-et\\values-et.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.0982090Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-eu\\values-eu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-eu\\values-eu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.1184994Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-fa\\values-fa.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-fa\\values-fa.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.1353264Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-fi\\values-fi.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-fi\\values-fi.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.1574714Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-fr\\values-fr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-fr\\values-fr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.1801808Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-fr-rCA\\values-fr-rCA.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-fr-rCA\\values-fr-rCA.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.1985203Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-gl\\values-gl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-gl\\values-gl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.2221807Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-gu\\values-gu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-gu\\values-gu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.2396859Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-h720dp-v13\\values-h720dp-v13.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-h720dp-v13\\values-h720dp-v13.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.2581189Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-hdpi-v4\\values-hdpi-v4.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-hdpi-v4\\values-hdpi-v4.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.2810223Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-hi\\values-hi.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-hi\\values-hi.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.3052098Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-hr\\values-hr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-hr\\values-hr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.3294423Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-hu\\values-hu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-hu\\values-hu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.3530520Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-hy\\values-hy.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-hy\\values-hy.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.3757255Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-in\\values-in.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-in\\values-in.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.3998251Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-is\\values-is.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-is\\values-is.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.4235103Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-it\\values-it.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-it\\values-it.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.4426897Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-iw\\values-iw.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-iw\\values-iw.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.4527392Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-ja\\values-ja.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-ja\\values-ja.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.4657362Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-ka\\values-ka.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-ka\\values-ka.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.4899195Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-kk\\values-kk.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-kk\\values-kk.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.5067071Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-km\\values-km.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-km\\values-km.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.5313169Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-kn\\values-kn.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-kn\\values-kn.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.5548636Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-ko\\values-ko.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-ko\\values-ko.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.5771445Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-ky\\values-ky.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-ky\\values-ky.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.5907998Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-land\\values-land.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-land\\values-land.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.6048814Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-large-v4\\values-large-v4.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-large-v4\\values-large-v4.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.6181423Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-ldltr-v21\\values-ldltr-v21.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-ldltr-v21\\values-ldltr-v21.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.6394487Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-lo\\values-lo.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-lo\\values-lo.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.6612562Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-lt\\values-lt.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-lt\\values-lt.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.6795642Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-lv\\values-lv.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-lv\\values-lv.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.6996320Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-mk\\values-mk.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-mk\\values-mk.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.7209467Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-ml\\values-ml.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-ml\\values-ml.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.7492839Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-mn\\values-mn.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-mn\\values-mn.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.7773512Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-mr\\values-mr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-mr\\values-mr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.8085350Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-ms\\values-ms.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-ms\\values-ms.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.8398405Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-my\\values-my.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-my\\values-my.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.8736459Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-nb\\values-nb.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-nb\\values-nb.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.9030995Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-ne\\values-ne.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-ne\\values-ne.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.9231051Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-night-v8\\values-night-v8.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-night-v8\\values-night-v8.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.9468846Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-nl\\values-nl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-nl\\values-nl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.9653261Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-or\\values-or.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-or\\values-or.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:07.9874744Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-pa\\values-pa.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-pa\\values-pa.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.0115216Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-pl\\values-pl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-pl\\values-pl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.0245533Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-port\\values-port.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-port\\values-port.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.0485983Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-pt\\values-pt.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-pt\\values-pt.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.0542252Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-pt-rBR\\values-pt-rBR.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-pt-rBR\\values-pt-rBR.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.0777767Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-pt-rPT\\values-pt-rPT.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-pt-rPT\\values-pt-rPT.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.1003868Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-ro\\values-ro.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-ro\\values-ro.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.1250473Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-ru\\values-ru.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-ru\\values-ru.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.1412647Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-si\\values-si.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-si\\values-si.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.1649377Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-sk\\values-sk.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-sk\\values-sk.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.1883367Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-sl\\values-sl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-sl\\values-sl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.2112459Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-sq\\values-sq.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-sq\\values-sq.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.2360453Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-sr\\values-sr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-sr\\values-sr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.2599746Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-sv\\values-sv.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-sv\\values-sv.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.2831394Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-sw\\values-sw.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-sw\\values-sw.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.3030663Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-sw600dp-v13\\values-sw600dp-v13.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-sw600dp-v13\\values-sw600dp-v13.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.3273604Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-ta\\values-ta.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-ta\\values-ta.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.3519078Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-te\\values-te.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-te\\values-te.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.3751634Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-th\\values-th.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-th\\values-th.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.3987529Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-tl\\values-tl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-tl\\values-tl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.4218887Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-tr\\values-tr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-tr\\values-tr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.4463963Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-uk\\values-uk.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-uk\\values-uk.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.4704049Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-ur\\values-ur.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-ur\\values-ur.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.4946613Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-uz\\values-uz.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-uz\\values-uz.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.5096115Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-v16\\values-v16.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-v16\\values-v16.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.5289111Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-v17\\values-v17.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-v17\\values-v17.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.5414604Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-v18\\values-v18.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-v18\\values-v18.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.5584164Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-v21\\values-v21.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-v21\\values-v21.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.5766467Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-v22\\values-v22.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-v22\\values-v22.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.5965206Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-v23\\values-v23.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-v23\\values-v23.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.6097390Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-v24\\values-v24.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-v24\\values-v24.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.6293289Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-v25\\values-v25.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-v25\\values-v25.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.6488277Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-v26\\values-v26.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-v26\\values-v26.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.6678276Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-v28\\values-v28.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-v28\\values-v28.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.6846889Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-vi\\values-vi.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-vi\\values-vi.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.7044644Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-watch-v20\\values-watch-v20.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-watch-v20\\values-watch-v20.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.7184944Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-watch-v21\\values-watch-v21.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-watch-v21\\values-watch-v21.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.7318846Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-xlarge-v4\\values-xlarge-v4.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-xlarge-v4\\values-xlarge-v4.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.7492876Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-zh-rCN\\values-zh-rCN.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-zh-rCN\\values-zh-rCN.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.7674150Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-zh-rHK\\values-zh-rHK.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-zh-rHK\\values-zh-rHK.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.7910413Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-zh-rTW\\values-zh-rTW.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-zh-rTW\\values-zh-rTW.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.8053538Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-zu\\values-zu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values-zu\\values-zu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.8136451Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.8296400Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.8546122Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.8766206Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.8961098Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.9269576Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\flat\\124.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\flat\\124.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.9428590Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.9648179Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:08.9868690Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\125\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\125\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:09.1392035Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\125\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\125\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:09.1563282Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\125\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\125\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:09.1603964Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\125\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\125\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:09.1785422Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\125\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\125\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:09.1963571Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\125\\jl\\flat\\125.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\125\\jl\\flat\\125.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:09.2161060Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\125\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\125\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:09.2349143Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\125\\jl\\res\\values-v23\\values-v23.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\125\\jl\\res\\values-v23\\values-v23.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:09.2415516Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:09.2553843Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\annotations.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\annotations.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:09.2875114Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:09.3092640Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:09.3228554Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\proguard.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\proguard.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:09.3386634Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:09.3632226Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:09.3888335Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:09.4335671Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\flat\\126.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\flat\\126.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:09.4522383Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\anim\\design_bottom_sheet_slide_in.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\anim\\design_bottom_sheet_slide_in.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:09.4704514Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\anim\\design_bottom_sheet_slide_out.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\anim\\design_bottom_sheet_slide_out.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:09.4865222Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\anim\\design_snackbar_in.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\anim\\design_snackbar_in.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:09.5035033Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\anim\\design_snackbar_out.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\anim\\design_snackbar_out.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:09.5200117Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\anim\\mtrl_bottom_sheet_slide_in.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\anim\\mtrl_bottom_sheet_slide_in.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:09.5380729Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\anim\\mtrl_bottom_sheet_slide_out.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\anim\\mtrl_bottom_sheet_slide_out.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:09.5555528Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\anim\\mtrl_card_lowers_interpolator.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\anim\\mtrl_card_lowers_interpolator.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:09.5759388Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\anim-v21\\design_bottom_sheet_slide_in.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\anim-v21\\design_bottom_sheet_slide_in.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:09.5968071Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\anim-v21\\design_bottom_sheet_slide_out.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\anim-v21\\design_bottom_sheet_slide_out.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:09.6163656Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\anim-v21\\mtrl_bottom_sheet_slide_in.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\anim-v21\\mtrl_bottom_sheet_slide_in.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:09.6354929Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\anim-v21\\mtrl_bottom_sheet_slide_out.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\anim-v21\\mtrl_bottom_sheet_slide_out.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:09.6591441Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\design_fab_hide_motion_spec.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\design_fab_hide_motion_spec.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:09.6791831Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\design_fab_show_motion_spec.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\design_fab_show_motion_spec.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:09.6995552Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\linear_indeterminate_line1_head_interpolator.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\linear_indeterminate_line1_head_interpolator.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:09.7191716Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\linear_indeterminate_line1_tail_interpolator.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\linear_indeterminate_line1_tail_interpolator.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:09.7387507Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\linear_indeterminate_line2_head_interpolator.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\linear_indeterminate_line2_head_interpolator.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:09.7581953Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\linear_indeterminate_line2_tail_interpolator.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\linear_indeterminate_line2_tail_interpolator.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:09.7777972Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\m3_btn_elevated_btn_state_list_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\m3_btn_elevated_btn_state_list_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:09.7999454Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\m3_btn_state_list_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\m3_btn_state_list_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:09.8225360Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\m3_card_elevated_state_list_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\m3_card_elevated_state_list_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:09.8441396Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\m3_card_state_list_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\m3_card_state_list_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:09.8747654Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\m3_chip_state_list_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\m3_chip_state_list_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:09.8958922Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\m3_elevated_chip_state_list_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\m3_elevated_chip_state_list_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:09.9180820Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\mtrl_btn_state_list_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\mtrl_btn_state_list_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:09.9367082Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\mtrl_btn_unelevated_state_list_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\mtrl_btn_unelevated_state_list_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:09.9570095Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\mtrl_card_state_list_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\mtrl_card_state_list_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:09.9785835Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\mtrl_chip_state_list_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\mtrl_chip_state_list_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.0009007Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\mtrl_extended_fab_change_size_collapse_motion_spec.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\mtrl_extended_fab_change_size_collapse_motion_spec.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.0195845Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\mtrl_extended_fab_change_size_expand_motion_spec.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\mtrl_extended_fab_change_size_expand_motion_spec.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.0397334Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\mtrl_extended_fab_hide_motion_spec.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\mtrl_extended_fab_hide_motion_spec.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.0546362Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\mtrl_extended_fab_show_motion_spec.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\mtrl_extended_fab_show_motion_spec.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.0789764Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\mtrl_extended_fab_state_list_animator.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\mtrl_extended_fab_state_list_animator.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.1002499Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\mtrl_fab_hide_motion_spec.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\mtrl_fab_hide_motion_spec.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.1180497Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\mtrl_fab_show_motion_spec.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\mtrl_fab_show_motion_spec.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.1394010Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\mtrl_fab_transformation_sheet_collapse_spec.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\mtrl_fab_transformation_sheet_collapse_spec.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.1605788Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\mtrl_fab_transformation_sheet_expand_spec.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator\\mtrl_fab_transformation_sheet_expand_spec.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.1769867Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator-v21\\design_appbar_state_list_animator.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\animator-v21\\design_appbar_state_list_animator.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.1988407Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\checkbox_themeable_attribute_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\checkbox_themeable_attribute_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.2189949Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\design_box_stroke_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\design_box_stroke_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.2385838Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\design_error.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\design_error.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.2577975Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\design_icon_tint.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\design_icon_tint.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.2775093Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_appbar_overlay_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_appbar_overlay_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.2960798Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_assist_chip_icon_tint_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_assist_chip_icon_tint_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.3152972Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_assist_chip_stroke_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_assist_chip_stroke_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.3298242Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_button_background_color_selector.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_button_background_color_selector.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.3442823Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_button_foreground_color_selector.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_button_foreground_color_selector.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.3576166Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_button_outline_color_selector.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_button_outline_color_selector.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.3776222Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_button_ripple_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_button_ripple_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.3982666Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_button_ripple_color_selector.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_button_ripple_color_selector.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.4121502Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_calendar_item_disabled_text.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_calendar_item_disabled_text.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.4310465Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_calendar_item_stroke_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_calendar_item_stroke_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.4509118Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_card_foreground_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_card_foreground_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.4712636Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_card_ripple_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_card_ripple_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.4891376Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_card_stroke_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_card_stroke_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.5028534Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_chip_assist_text_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_chip_assist_text_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.5227367Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_chip_background_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_chip_background_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.5436085Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_chip_ripple_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_chip_ripple_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.5614997Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_chip_stroke_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_chip_stroke_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.5809418Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_chip_text_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_chip_text_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.6004709Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_dark_default_color_primary_text.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_dark_default_color_primary_text.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.6216558Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_dark_default_color_secondary_text.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_dark_default_color_secondary_text.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.6413001Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_dark_highlighted_text.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_dark_highlighted_text.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.6607979Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_dark_hint_foreground.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_dark_hint_foreground.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.6803743Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_dark_primary_text_disable_only.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_dark_primary_text_disable_only.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.6997708Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_default_color_primary_text.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_default_color_primary_text.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.7201305Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_default_color_secondary_text.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_default_color_secondary_text.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.7345001Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_elevated_chip_background_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_elevated_chip_background_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.7547750Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_highlighted_text.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_highlighted_text.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.7748323Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_hint_foreground.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_hint_foreground.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.8051262Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_navigation_bar_item_with_indicator_icon_tint.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_navigation_bar_item_with_indicator_icon_tint.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.8266819Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_navigation_bar_item_with_indicator_label_tint.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_navigation_bar_item_with_indicator_label_tint.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.8557558Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_navigation_bar_ripple_color_selector.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_navigation_bar_ripple_color_selector.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.8747818Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_navigation_item_background_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_navigation_item_background_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.9026877Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_navigation_item_icon_tint.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_navigation_item_icon_tint.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.9245773Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_navigation_item_ripple_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_navigation_item_ripple_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.9280579Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_navigation_item_text_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_navigation_item_text_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.9412692Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_popupmenu_overlay_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_popupmenu_overlay_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.9610147Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_primary_text_disable_only.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_primary_text_disable_only.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.9757390Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_radiobutton_ripple_tint.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_radiobutton_ripple_tint.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:10.9959493Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_selection_control_button_tint.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_selection_control_button_tint.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.0102563Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_selection_control_ripple_color_selector.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_selection_control_ripple_color_selector.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.0306360Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_slider_active_track_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_slider_active_track_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.0499496Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_slider_halo_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_slider_halo_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.0701985Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_slider_inactive_track_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_slider_inactive_track_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.0841351Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_slider_thumb_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_slider_thumb_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.1049170Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_switch_thumb_tint.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_switch_thumb_tint.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.1187267Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_switch_track_tint.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_switch_track_tint.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.1378461Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_tabs_icon_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_tabs_icon_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.1578872Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_tabs_ripple_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_tabs_ripple_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.1789068Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_textfield_filled_background_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_textfield_filled_background_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.1924317Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_textfield_indicator_text_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_textfield_indicator_text_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.2062546Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_textfield_input_text_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_textfield_input_text_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.2255136Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_textfield_label_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_textfield_label_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.2394071Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_textfield_stroke_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_textfield_stroke_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.2584881Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_text_button_background_color_selector.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_text_button_background_color_selector.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.2782841Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_text_button_foreground_color_selector.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_text_button_foreground_color_selector.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.2989746Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_text_button_ripple_color_selector.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_text_button_ripple_color_selector.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.3177414Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_timepicker_button_background_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_timepicker_button_background_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.3318259Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_timepicker_button_ripple_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_timepicker_button_ripple_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.3460315Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_timepicker_button_text_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_timepicker_button_text_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.3597735Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_timepicker_clock_text_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_timepicker_clock_text_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.3766444Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_timepicker_display_background_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_timepicker_display_background_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.3947901Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_timepicker_display_ripple_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_timepicker_display_ripple_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.4082976Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_timepicker_display_stroke_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_timepicker_display_stroke_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.4289566Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_timepicker_display_text_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_timepicker_display_text_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.4438666Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_timepicker_secondary_text_button_ripple_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_timepicker_secondary_text_button_ripple_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.4612760Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_timepicker_secondary_text_button_text_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_timepicker_secondary_text_button_text_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.4810746Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_tonal_button_ripple_color_selector.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\m3_tonal_button_ripple_color_selector.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.4996005Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_cursor_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_cursor_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.5189009Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_divider_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_divider_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.5366772Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_on_background_disabled.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_on_background_disabled.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.5559975Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_on_background_emphasis_high_type.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_on_background_emphasis_high_type.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.5750215Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_on_background_emphasis_medium.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_on_background_emphasis_medium.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.5942284Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_on_primary_disabled.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_on_primary_disabled.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.6133417Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_on_primary_emphasis_high_type.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_on_primary_emphasis_high_type.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.6325541Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_on_primary_emphasis_medium.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_on_primary_emphasis_medium.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.6515982Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_on_surface_disabled.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_on_surface_disabled.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.6707003Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_on_surface_emphasis_high_type.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_on_surface_emphasis_high_type.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.6914721Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_on_surface_emphasis_medium.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_on_surface_emphasis_medium.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.7046337Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_on_surface_stroke.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_on_surface_stroke.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.7182942Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_slider_active_tick_marks_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_slider_active_tick_marks_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.7377185Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_slider_active_track_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_slider_active_track_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.7571034Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_slider_halo_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_slider_halo_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.7736362Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_slider_inactive_tick_marks_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_slider_inactive_tick_marks_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.7922239Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_slider_inactive_track_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_slider_inactive_track_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.8100360Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_slider_thumb_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_slider_thumb_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.8287010Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_timepicker_button_background.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_timepicker_button_background.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.8425117Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_timepicker_button_stroke.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_timepicker_button_stroke.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.8617186Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_timepicker_clockface.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_timepicker_clockface.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.8824023Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_timepicker_clock_text_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_timepicker_clock_text_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.9019553Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_timepicker_modebutton_tint.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\material_timepicker_modebutton_tint.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.9156941Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_btn_bg_color_selector.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_btn_bg_color_selector.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.9354667Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_btn_ripple_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_btn_ripple_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.9554183Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_btn_stroke_color_selector.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_btn_stroke_color_selector.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.9752888Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_btn_text_btn_bg_color_selector.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_btn_text_btn_bg_color_selector.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:11.9970365Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_btn_text_btn_ripple_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_btn_text_btn_ripple_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.0161552Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_btn_text_color_selector.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_btn_text_color_selector.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.0383241Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_calendar_item_stroke_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_calendar_item_stroke_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.0588215Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_calendar_selected_range.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_calendar_selected_range.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.0797170Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_card_view_foreground.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_card_view_foreground.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.1014907Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_card_view_ripple.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_card_view_ripple.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.1163648Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_chip_background_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_chip_background_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.1361589Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_chip_close_icon_tint.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_chip_close_icon_tint.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.1547063Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_chip_surface_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_chip_surface_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.1682115Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_chip_text_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_chip_text_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.1836020Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_choice_chip_background_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_choice_chip_background_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.1980232Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_choice_chip_ripple_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_choice_chip_ripple_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.2124020Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_choice_chip_text_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_choice_chip_text_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.2266543Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_error.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_error.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.2419578Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_fab_bg_color_selector.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_fab_bg_color_selector.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.2613272Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_fab_icon_text_color_selector.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_fab_icon_text_color_selector.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.2774492Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_fab_ripple_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_fab_ripple_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.2928672Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_filled_background_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_filled_background_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.3115901Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_filled_icon_tint.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_filled_icon_tint.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.3311810Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_filled_stroke_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_filled_stroke_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.3513560Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_indicator_text_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_indicator_text_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.3709327Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_navigation_bar_colored_item_tint.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_navigation_bar_colored_item_tint.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.3855668Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_navigation_bar_colored_ripple_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_navigation_bar_colored_ripple_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.4051293Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_navigation_bar_item_tint.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_navigation_bar_item_tint.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.4264064Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_navigation_bar_ripple_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_navigation_bar_ripple_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.4464135Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_navigation_item_background_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_navigation_item_background_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.4626637Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_navigation_item_icon_tint.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_navigation_item_icon_tint.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.4666082Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_navigation_item_text_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_navigation_item_text_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.4809420Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_on_primary_text_btn_text_color_selector.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_on_primary_text_btn_text_color_selector.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.5013711Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_on_surface_ripple_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_on_surface_ripple_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.5152810Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_outlined_icon_tint.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_outlined_icon_tint.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.5347807Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_outlined_stroke_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_outlined_stroke_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.5546184Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_popupmenu_overlay_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_popupmenu_overlay_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.5747155Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_tabs_colored_ripple_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_tabs_colored_ripple_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.5935261Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_tabs_icon_color_selector.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_tabs_icon_color_selector.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.6070811Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_tabs_icon_color_selector_colored.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_tabs_icon_color_selector_colored.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.6204590Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_tabs_legacy_text_color_selector.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_tabs_legacy_text_color_selector.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.6349919Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_tabs_ripple_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_tabs_ripple_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.6493446Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_text_btn_text_color_selector.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\mtrl_text_btn_text_color_selector.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.6689655Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\radiobutton_themeable_attribute_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\radiobutton_themeable_attribute_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.6871331Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\test_mtrl_calendar_day.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\test_mtrl_calendar_day.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.7055215Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\test_mtrl_calendar_day_selected.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color\\test_mtrl_calendar_day_selected.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.7270165Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color-night-v8\\material_timepicker_button_stroke.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color-night-v8\\material_timepicker_button_stroke.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.7456852Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color-night-v8\\material_timepicker_clockface.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color-night-v8\\material_timepicker_clockface.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.7648952Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color-night-v8\\material_timepicker_modebutton_tint.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color-night-v8\\material_timepicker_modebutton_tint.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.7841974Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color-v31\\m3_dynamic_dark_default_color_primary_text.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color-v31\\m3_dynamic_dark_default_color_primary_text.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.8044615Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color-v31\\m3_dynamic_dark_default_color_secondary_text.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color-v31\\m3_dynamic_dark_default_color_secondary_text.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.8243192Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color-v31\\m3_dynamic_dark_highlighted_text.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color-v31\\m3_dynamic_dark_highlighted_text.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.8385187Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color-v31\\m3_dynamic_dark_hint_foreground.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color-v31\\m3_dynamic_dark_hint_foreground.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.8582746Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color-v31\\m3_dynamic_dark_primary_text_disable_only.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color-v31\\m3_dynamic_dark_primary_text_disable_only.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.8726841Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color-v31\\m3_dynamic_default_color_primary_text.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color-v31\\m3_dynamic_default_color_primary_text.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.8860576Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color-v31\\m3_dynamic_default_color_secondary_text.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color-v31\\m3_dynamic_default_color_secondary_text.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.8969541Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color-v31\\m3_dynamic_highlighted_text.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color-v31\\m3_dynamic_highlighted_text.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.9145766Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color-v31\\m3_dynamic_hint_foreground.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color-v31\\m3_dynamic_hint_foreground.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.9285269Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color-v31\\m3_dynamic_primary_text_disable_only.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\color-v31\\m3_dynamic_primary_text_disable_only.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.9448698Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\avd_hide_password.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\avd_hide_password.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.9658947Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\avd_show_password.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\avd_show_password.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:12.9849877Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\design_fab_background.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\design_fab_background.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.0056135Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\design_ic_visibility.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\design_ic_visibility.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.0241975Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\design_ic_visibility_off.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\design_ic_visibility_off.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.0412240Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\design_password_eye.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\design_password_eye.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.0588429Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\design_snackbar_background.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\design_snackbar_background.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.0771692Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\ic_clock_black_24dp.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\ic_clock_black_24dp.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.0955816Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\ic_keyboard_black_24dp.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\ic_keyboard_black_24dp.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.1142391Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\ic_m3_chip_check.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\ic_m3_chip_check.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.1337633Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\ic_m3_chip_checked_circle.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\ic_m3_chip_checked_circle.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.1521021Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\ic_m3_chip_close.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\ic_m3_chip_close.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.1705335Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\ic_mtrl_checked_circle.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\ic_mtrl_checked_circle.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.1893506Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\ic_mtrl_chip_checked_black.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\ic_mtrl_chip_checked_black.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.2069024Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\ic_mtrl_chip_checked_circle.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\ic_mtrl_chip_checked_circle.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.2218514Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\ic_mtrl_chip_close_circle.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\ic_mtrl_chip_close_circle.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.2360219Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\m3_popupmenu_background_overlay.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\m3_popupmenu_background_overlay.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.2570644Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\m3_tabs_line_indicator.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\m3_tabs_line_indicator.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.2729534Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\m3_tabs_rounded_line_indicator.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\m3_tabs_rounded_line_indicator.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.2904515Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\material_cursor_drawable.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\material_cursor_drawable.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.3038970Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\material_ic_calendar_black_24dp.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\material_ic_calendar_black_24dp.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.3213743Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\material_ic_clear_black_24dp.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\material_ic_clear_black_24dp.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.3413310Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\material_ic_edit_black_24dp.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\material_ic_edit_black_24dp.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.3592893Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\material_ic_keyboard_arrow_left_black_24dp.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\material_ic_keyboard_arrow_left_black_24dp.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.3758862Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\material_ic_keyboard_arrow_right_black_24dp.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\material_ic_keyboard_arrow_right_black_24dp.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.3919331Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\material_ic_menu_arrow_down_black_24dp.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\material_ic_menu_arrow_down_black_24dp.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.4062559Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\material_ic_menu_arrow_up_black_24dp.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\material_ic_menu_arrow_up_black_24dp.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.4230856Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\mtrl_dialog_background.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\mtrl_dialog_background.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.4374532Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\mtrl_dropdown_arrow.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\mtrl_dropdown_arrow.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.4552854Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\mtrl_ic_arrow_drop_down.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\mtrl_ic_arrow_drop_down.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.4749991Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\mtrl_ic_arrow_drop_up.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\mtrl_ic_arrow_drop_up.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.4945395Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\mtrl_ic_cancel.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\mtrl_ic_cancel.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.5159159Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\mtrl_ic_error.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\mtrl_ic_error.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.5357397Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\mtrl_navigation_bar_item_background.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\mtrl_navigation_bar_item_background.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.5562880Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\mtrl_popupmenu_background.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\mtrl_popupmenu_background.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.5766094Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\mtrl_popupmenu_background_overlay.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\mtrl_popupmenu_background_overlay.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.5940000Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\mtrl_tabs_default_indicator.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\mtrl_tabs_default_indicator.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.6136888Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\navigation_empty_icon.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\navigation_empty_icon.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.6327010Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\test_custom_background.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable\\test_custom_background.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.6540619Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable-v21\\m3_tabs_background.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable-v21\\m3_tabs_background.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.6679012Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable-v21\\material_cursor_drawable.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable-v21\\material_cursor_drawable.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.6874262Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable-v21\\mtrl_navigation_bar_item_background.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable-v21\\mtrl_navigation_bar_item_background.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.7084303Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable-v23\\m3_appbar_background.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable-v23\\m3_appbar_background.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.7303899Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable-v23\\m3_popupmenu_background_overlay.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable-v23\\m3_popupmenu_background_overlay.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.7498526Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable-v23\\m3_radiobutton_ripple.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable-v23\\m3_radiobutton_ripple.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.7632310Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable-v23\\m3_selection_control_ripple.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable-v23\\m3_selection_control_ripple.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.7882896Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable-v23\\m3_tabs_background.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable-v23\\m3_tabs_background.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.8339185Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable-v23\\m3_tabs_transparent_background.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable-v23\\m3_tabs_transparent_background.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.8529582Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable-v23\\mtrl_popupmenu_background_overlay.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\drawable-v23\\mtrl_popupmenu_background_overlay.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.8717282Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\interpolator\\mtrl_fast_out_linear_in.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\interpolator\\mtrl_fast_out_linear_in.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.8906986Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\interpolator\\mtrl_fast_out_slow_in.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\interpolator\\mtrl_fast_out_slow_in.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.9069065Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\interpolator\\mtrl_linear.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\interpolator\\mtrl_linear.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.9253740Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\interpolator\\mtrl_linear_out_slow_in.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\interpolator\\mtrl_linear_out_slow_in.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.9455700Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\interpolator-v21\\mtrl_fast_out_linear_in.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\interpolator-v21\\mtrl_fast_out_linear_in.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.9626889Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\interpolator-v21\\mtrl_fast_out_slow_in.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\interpolator-v21\\mtrl_fast_out_slow_in.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:13.9788346Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\interpolator-v21\\mtrl_linear_out_slow_in.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\interpolator-v21\\mtrl_linear_out_slow_in.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.0007783Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\design_bottom_navigation_item.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\design_bottom_navigation_item.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.0202958Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\design_bottom_sheet_dialog.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\design_bottom_sheet_dialog.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.0416464Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\design_layout_snackbar.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\design_layout_snackbar.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.0606463Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\design_layout_snackbar_include.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\design_layout_snackbar_include.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.0800619Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\design_layout_tab_icon.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\design_layout_tab_icon.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.0983987Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\design_layout_tab_text.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\design_layout_tab_text.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.1156950Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\design_menu_item_action_area.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\design_menu_item_action_area.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.1302763Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\design_navigation_item.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\design_navigation_item.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.1438710Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\design_navigation_item_header.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\design_navigation_item_header.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.1572155Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\design_navigation_item_separator.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\design_navigation_item_separator.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.1713481Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\design_navigation_item_subheader.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\design_navigation_item_subheader.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.1875309Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\design_navigation_menu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\design_navigation_menu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.2071943Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\design_navigation_menu_item.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\design_navigation_menu_item.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.2256042Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\design_text_input_end_icon.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\design_text_input_end_icon.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.2429068Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\design_text_input_start_icon.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\design_text_input_start_icon.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.2634961Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\m3_alert_dialog.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\m3_alert_dialog.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.2823723Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\m3_alert_dialog_actions.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\m3_alert_dialog_actions.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.3033975Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\m3_alert_dialog_title.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\m3_alert_dialog_title.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.3232904Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\m3_auto_complete_simple_item.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\m3_auto_complete_simple_item.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.3412271Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\material_chip_input_combo.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\material_chip_input_combo.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.3614926Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\material_clockface_textview.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\material_clockface_textview.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.3818094Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\material_clockface_view.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\material_clockface_view.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.4060996Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\material_clock_display.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\material_clock_display.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.4214208Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\material_clock_display_divider.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\material_clock_display_divider.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.4416397Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\material_clock_period_toggle.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\material_clock_period_toggle.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.4627258Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\material_radial_view_group.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\material_radial_view_group.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.4820174Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\material_textinput_timepicker.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\material_textinput_timepicker.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.5006913Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\material_timepicker.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\material_timepicker.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.5205461Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\material_timepicker_dialog.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\material_timepicker_dialog.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.5409962Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\material_timepicker_textinput_display.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\material_timepicker_textinput_display.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.5600930Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\material_time_chip.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\material_time_chip.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.5788511Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\material_time_input.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\material_time_input.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.5998874Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_alert_dialog.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_alert_dialog.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.6177718Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_alert_dialog_actions.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_alert_dialog_actions.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.6356304Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_alert_dialog_title.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_alert_dialog_title.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.6568169Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_alert_select_dialog_item.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_alert_select_dialog_item.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.6756762Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_alert_select_dialog_multichoice.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_alert_select_dialog_multichoice.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.6942511Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_alert_select_dialog_singlechoice.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_alert_select_dialog_singlechoice.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.7119539Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_auto_complete_simple_item.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_auto_complete_simple_item.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.7289932Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_calendar_day.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_calendar_day.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.7435410Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_calendar_days_of_week.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_calendar_days_of_week.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.7601665Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_calendar_day_of_week.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_calendar_day_of_week.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.7778148Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_calendar_horizontal.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_calendar_horizontal.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.7948261Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_calendar_month.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_calendar_month.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.8120761Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_calendar_months.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_calendar_months.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.8321445Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_calendar_month_labeled.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_calendar_month_labeled.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.8541005Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_calendar_month_navigation.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_calendar_month_navigation.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.8701433Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_calendar_vertical.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_calendar_vertical.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.8865160Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_calendar_year.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_calendar_year.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.9052867Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_layout_snackbar.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_layout_snackbar.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.9254132Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_layout_snackbar_include.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_layout_snackbar_include.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.9447330Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_navigation_rail_item.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_navigation_rail_item.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.9622082Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_picker_actions.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_picker_actions.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.9798439Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_picker_dialog.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_picker_dialog.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:14.9952896Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_picker_fullscreen.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_picker_fullscreen.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.0143588Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_picker_header_dialog.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_picker_header_dialog.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.0317667Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_picker_header_fullscreen.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_picker_header_fullscreen.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.0484133Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_picker_header_selection_text.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_picker_header_selection_text.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.0689886Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_picker_header_title_text.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_picker_header_title_text.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.0862295Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_picker_header_toggle.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_picker_header_toggle.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.1055787Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_picker_text_input_date.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_picker_text_input_date.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.1269296Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_picker_text_input_date_range.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\mtrl_picker_text_input_date_range.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.1435797Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\test_action_chip.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\test_action_chip.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.1620232Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\test_chip_zero_corner_radius.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\test_chip_zero_corner_radius.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.1806477Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\test_design_checkbox.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\test_design_checkbox.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.1982699Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\test_design_radiobutton.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\test_design_radiobutton.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.2138988Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\test_exposed_dropdown_menu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\test_exposed_dropdown_menu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.2327732Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\test_navigation_bar_item_layout.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\test_navigation_bar_item_layout.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.2513495Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\test_reflow_chipgroup.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\test_reflow_chipgroup.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.2670137Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\test_toolbar.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\test_toolbar.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.2871544Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\test_toolbar_custom_background.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\test_toolbar_custom_background.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.3068044Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\test_toolbar_elevation.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\test_toolbar_elevation.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.3244072Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\test_toolbar_surface.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\test_toolbar_surface.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.3385535Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\text_view_without_line_height.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\text_view_without_line_height.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.3572440Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\text_view_with_line_height_from_appearance.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\text_view_with_line_height_from_appearance.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.3722446Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\text_view_with_line_height_from_layout.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\text_view_with_line_height_from_layout.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.3899898Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\text_view_with_line_height_from_style.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\text_view_with_line_height_from_style.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.4073808Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\text_view_with_theme_line_height.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout\\text_view_with_theme_line_height.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.4287114Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout-land\\material_clock_period_toggle_land.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout-land\\material_clock_period_toggle_land.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.4479878Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout-land\\material_timepicker.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout-land\\material_timepicker.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.4629577Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout-land\\mtrl_picker_header_dialog.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout-land\\mtrl_picker_header_dialog.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.4831123Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout-ldrtl-v17\\material_textinput_timepicker.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout-ldrtl-v17\\material_textinput_timepicker.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.5019238Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout-sw600dp-v13\\design_layout_snackbar.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout-sw600dp-v13\\design_layout_snackbar.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.5191032Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout-sw600dp-v13\\mtrl_layout_snackbar.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout-sw600dp-v13\\mtrl_layout_snackbar.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.5361984Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout-v26\\mtrl_calendar_month.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\layout-v26\\mtrl_calendar_month.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.5774640Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.5979098Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-af\\values-af.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-af\\values-af.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.6149629Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-am\\values-am.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-am\\values-am.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.6356371Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-ar\\values-ar.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-ar\\values-ar.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.6577155Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-as\\values-as.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-as\\values-as.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.6785689Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-az\\values-az.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-az\\values-az.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.6945405Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-b+es+419\\values-b+es+419.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-b+es+419\\values-b+es+419.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.7155604Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-b+sr+Latn\\values-b+sr+Latn.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-b+sr+Latn\\values-b+sr+Latn.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.7362581Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-be\\values-be.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-be\\values-be.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.7569551Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-bg\\values-bg.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-bg\\values-bg.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.7771210Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-bn\\values-bn.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-bn\\values-bn.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.7973206Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-bs\\values-bs.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-bs\\values-bs.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.8154172Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-ca\\values-ca.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-ca\\values-ca.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.8359010Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-cs\\values-cs.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-cs\\values-cs.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.8562702Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-da\\values-da.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-da\\values-da.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.8769184Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-de\\values-de.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-de\\values-de.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.8976809Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-el\\values-el.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-el\\values-el.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.9187387Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-en-rGB\\values-en-rGB.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-en-rGB\\values-en-rGB.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.9396218Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-es\\values-es.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-es\\values-es.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.9448683Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-es-rUS\\values-es-rUS.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-es-rUS\\values-es-rUS.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.9659430Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-et\\values-et.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-et\\values-et.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:15.9857908Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-eu\\values-eu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-eu\\values-eu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.0071175Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-fa\\values-fa.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-fa\\values-fa.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.0283821Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-fi\\values-fi.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-fi\\values-fi.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.0486228Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-fr\\values-fr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-fr\\values-fr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.0699032Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-fr-rCA\\values-fr-rCA.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-fr-rCA\\values-fr-rCA.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.0912472Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-gl\\values-gl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-gl\\values-gl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.1117183Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-gu\\values-gu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-gu\\values-gu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.1279116Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-h320dp-port-v13\\values-h320dp-port-v13.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-h320dp-port-v13\\values-h320dp-port-v13.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.1434168Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-h360dp-land-v13\\values-h360dp-land-v13.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-h360dp-land-v13\\values-h360dp-land-v13.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.1600805Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-h480dp-land-v13\\values-h480dp-land-v13.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-h480dp-land-v13\\values-h480dp-land-v13.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.1738912Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-h550dp-port-v13\\values-h550dp-port-v13.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-h550dp-port-v13\\values-h550dp-port-v13.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.1924421Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-hi\\values-hi.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-hi\\values-hi.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.2137326Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-hr\\values-hr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-hr\\values-hr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.2342370Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-hu\\values-hu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-hu\\values-hu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.2555008Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-hy\\values-hy.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-hy\\values-hy.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.2760871Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-in\\values-in.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-in\\values-in.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.2975152Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-is\\values-is.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-is\\values-is.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.3196623Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-it\\values-it.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-it\\values-it.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.3411697Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-iw\\values-iw.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-iw\\values-iw.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.3608399Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-ja\\values-ja.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-ja\\values-ja.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.3763970Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-ka\\values-ka.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-ka\\values-ka.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.3974213Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-kk\\values-kk.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-kk\\values-kk.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.4178161Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-km\\values-km.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-km\\values-km.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.4377598Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-kn\\values-kn.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-kn\\values-kn.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.4586228Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-ko\\values-ko.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-ko\\values-ko.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.4791008Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-ky\\values-ky.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-ky\\values-ky.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.4977041Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-land\\values-land.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-land\\values-land.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.5160244Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-large-v4\\values-large-v4.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-large-v4\\values-large-v4.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.5331436Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-ldrtl-v17\\values-ldrtl-v17.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-ldrtl-v17\\values-ldrtl-v17.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.5536497Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-lo\\values-lo.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-lo\\values-lo.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.5727248Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-lt\\values-lt.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-lt\\values-lt.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.5934691Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-lv\\values-lv.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-lv\\values-lv.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.6138995Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-mk\\values-mk.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-mk\\values-mk.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.6334859Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-ml\\values-ml.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-ml\\values-ml.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.6526129Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-mn\\values-mn.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-mn\\values-mn.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.6736121Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-mr\\values-mr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-mr\\values-mr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.6946596Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-ms\\values-ms.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-ms\\values-ms.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.7143832Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-my\\values-my.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-my\\values-my.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.7349016Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-nb\\values-nb.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-nb\\values-nb.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.7553672Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-ne\\values-ne.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-ne\\values-ne.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.7751351Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-night-v8\\values-night-v8.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-night-v8\\values-night-v8.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.7922428Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-nl\\values-nl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-nl\\values-nl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.8130279Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-or\\values-or.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-or\\values-or.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.8291253Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-pa\\values-pa.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-pa\\values-pa.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.8494321Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-pl\\values-pl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-pl\\values-pl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.8707886Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-pt-rBR\\values-pt-rBR.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-pt-rBR\\values-pt-rBR.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.8892079Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-pt-rPT\\values-pt-rPT.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-pt-rPT\\values-pt-rPT.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.9051080Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-ro\\values-ro.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-ro\\values-ro.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.9219743Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-ru\\values-ru.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-ru\\values-ru.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.9382910Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-si\\values-si.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-si\\values-si.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.9550403Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-sk\\values-sk.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-sk\\values-sk.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.9764832Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-sl\\values-sl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-sl\\values-sl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:16.9906381Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-small-v4\\values-small-v4.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-small-v4\\values-small-v4.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.0091801Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-sq\\values-sq.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-sq\\values-sq.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.0317980Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-sr\\values-sr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-sr\\values-sr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.0536553Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-sv\\values-sv.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-sv\\values-sv.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.0760050Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-sw\\values-sw.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-sw\\values-sw.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.0940505Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-sw600dp-v13\\values-sw600dp-v13.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-sw600dp-v13\\values-sw600dp-v13.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.1145478Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-ta\\values-ta.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-ta\\values-ta.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.1356168Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-te\\values-te.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-te\\values-te.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.1569370Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-th\\values-th.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-th\\values-th.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.1769009Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-tl\\values-tl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-tl\\values-tl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.1986005Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-tr\\values-tr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-tr\\values-tr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.2172891Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-uk\\values-uk.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-uk\\values-uk.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.2375585Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-ur\\values-ur.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-ur\\values-ur.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.2581074Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-uz\\values-uz.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-uz\\values-uz.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.2768506Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-v21\\values-v21.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-v21\\values-v21.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.2932595Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-v23\\values-v23.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-v23\\values-v23.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.3085969Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-v24\\values-v24.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-v24\\values-v24.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.3241576Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-v28\\values-v28.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-v28\\values-v28.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.3426583Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-v31\\values-v31.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-v31\\values-v31.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.3623206Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-vi\\values-vi.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-vi\\values-vi.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.3762490Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-w320dp-land-v13\\values-w320dp-land-v13.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-w320dp-land-v13\\values-w320dp-land-v13.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.3934219Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-w360dp-port-v13\\values-w360dp-port-v13.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-w360dp-port-v13\\values-w360dp-port-v13.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.4100143Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-w480dp-port-v13\\values-w480dp-port-v13.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-w480dp-port-v13\\values-w480dp-port-v13.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.4254454Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-w600dp-land-v13\\values-w600dp-land-v13.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-w600dp-land-v13\\values-w600dp-land-v13.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.4457169Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-zh-rCN\\values-zh-rCN.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-zh-rCN\\values-zh-rCN.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.4662259Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-zh-rHK\\values-zh-rHK.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-zh-rHK\\values-zh-rHK.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.4878117Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-zh-rTW\\values-zh-rTW.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-zh-rTW\\values-zh-rTW.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.5082182Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-zu\\values-zu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-zu\\values-zu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.5277027Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\xml\\standalone_badge.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\xml\\standalone_badge.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.5444038Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\xml\\standalone_badge_gravity_bottom_end.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\xml\\standalone_badge_gravity_bottom_end.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.5608592Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\xml\\standalone_badge_gravity_bottom_start.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\xml\\standalone_badge_gravity_bottom_start.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.5784256Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\xml\\standalone_badge_gravity_top_start.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\xml\\standalone_badge_gravity_top_start.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.5959880Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\xml\\standalone_badge_offset.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\xml\\standalone_badge_offset.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.6176972Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.6428311Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.6636638Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.6778790Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\proguard.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\proguard.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.6798259Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.6927509Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.7096324Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.7304077Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\flat\\127.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\flat\\127.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.7514409Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.7725526Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.7925421Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\128\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\128\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:17.8106020Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\128\\jl\\annotations.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\128\\jl\\annotations.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.0698575Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\128\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\128\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.0904575Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\128\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\128\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.1064491Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\128\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\128\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.1233587Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\128\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\128\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.1428583Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\128\\jl\\flat\\128.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\128\\jl\\flat\\128.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.1590218Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\128\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\128\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.1793926Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\129\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\129\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.1974888Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\129\\jl\\annotations.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\129\\jl\\annotations.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.2201598Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\129\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\129\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.2420638Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\129\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\129\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.2433402Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\129\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\129\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.2443561Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\129\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\129\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.2618641Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\129\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\129\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.2791450Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\129\\jl\\flat\\129.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\129\\jl\\flat\\129.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.2892579Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\129\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\129\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.3065530Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\129\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\129\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.3255221Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\130\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\130\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.5551354Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\130\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\130\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.5566080Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\130\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\130\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.5779929Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\130\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\130\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.5965999Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\131\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\131\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.6370972Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\131\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\131\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.6493531Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\131\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\131\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.6587104Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\131\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\131\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.6740251Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\132\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\132\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.7219171Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\132\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\132\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.7439747Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\132\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\132\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.7453473Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\132\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\132\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.7469866Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\132\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\132\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.7627727Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\132\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\132\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.7670703Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\132\\jl\\flat\\132.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\132\\jl\\flat\\132.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.7861835Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\132\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\132\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.7921128Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\132\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\132\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.8116996Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\133\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\133\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.8368736Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\133\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\133\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.8589130Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\133\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\133\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.8605502Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\133\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\133\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.8622406Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\133\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\133\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.8652450Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\133\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\133\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.8695970Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\133\\jl\\flat\\133.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\133\\jl\\flat\\133.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.8787769Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\133\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\133\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.8849583Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\133\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\133\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.9048674Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\134\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\134\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.9217743Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\134\\jl\\baseline-prof.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\134\\jl\\baseline-prof.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.9466395Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\134\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\134\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.9641471Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\134\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\134\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.9809596Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\134\\jl\\proguard.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\134\\jl\\proguard.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.9823826Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\134\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\134\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:18.9962606Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\134\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\134\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:19.0155061Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\134\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\134\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:19.0329055Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\134\\jl\\flat\\134.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\134\\jl\\flat\\134.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:19.0426267Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\134\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\134\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:19.0597413Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\134\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\134\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:19.0798004Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\135\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\135\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:19.4067472Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\135\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\135\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:19.4296836Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\135\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\135\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:19.4312153Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\135\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\135\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:19.4329612Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\135\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\135\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:19.4380975Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\135\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\135\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:19.4426181Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\135\\jl\\flat\\135.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\135\\jl\\flat\\135.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:19.4520213Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\135\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\135\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:19.4581750Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\135\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\135\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:19.4760197Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\136\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\136\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:19.4928348Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\136\\jl\\baseline-prof.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\136\\jl\\baseline-prof.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:19.5194363Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\136\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\136\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:19.5413359Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\136\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\136\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:19.5424594Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\136\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\136\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:19.5588674Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\136\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\136\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:19.5798825Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\136\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\136\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:19.5991595Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\136\\jl\\flat\\136.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\136\\jl\\flat\\136.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:19.6080897Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\136\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\136\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:19.6234361Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\136\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\136\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:19.6405333Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:19.9922520Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.0081654Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.0238491Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\proguard.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\proguard.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.0349622Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.0478889Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.0713342Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.0976303Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\flat\\137.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\flat\\137.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.1070706Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.1287083Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\anim\\nav_default_enter_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\anim\\nav_default_enter_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.1429183Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\anim\\nav_default_exit_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\anim\\nav_default_exit_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.1472585Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\anim\\nav_default_pop_enter_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\anim\\nav_default_pop_enter_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.1511927Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\anim\\nav_default_pop_exit_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\anim\\nav_default_pop_exit_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.1701477Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\animator\\nav_default_enter_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\animator\\nav_default_enter_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.1878593Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\animator\\nav_default_exit_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\animator\\nav_default_exit_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.1916243Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\animator\\nav_default_pop_enter_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\animator\\nav_default_pop_enter_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.1952580Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\animator\\nav_default_pop_exit_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\animator\\nav_default_pop_exit_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.2111836Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.2253889Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-af\\values-af.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-af\\values-af.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.2429252Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-am\\values-am.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-am\\values-am.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.2587196Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-ar\\values-ar.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-ar\\values-ar.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.2720680Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-as\\values-as.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-as\\values-as.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.2879312Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-az\\values-az.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-az\\values-az.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.3045644Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-b+sr+Latn\\values-b+sr+Latn.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-b+sr+Latn\\values-b+sr+Latn.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.3213483Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-be\\values-be.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-be\\values-be.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.3363241Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-bg\\values-bg.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-bg\\values-bg.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.3532698Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-bn\\values-bn.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-bn\\values-bn.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.3690491Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-bs\\values-bs.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-bs\\values-bs.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.3845290Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-ca\\values-ca.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-ca\\values-ca.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.4008057Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-cs\\values-cs.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-cs\\values-cs.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.4161538Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-da\\values-da.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-da\\values-da.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.4319599Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-de\\values-de.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-de\\values-de.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.4487567Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-el\\values-el.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-el\\values-el.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.4658716Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-en-rAU\\values-en-rAU.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-en-rAU\\values-en-rAU.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.4703534Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-en-rGB\\values-en-rGB.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-en-rGB\\values-en-rGB.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.4754796Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-en-rIN\\values-en-rIN.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-en-rIN\\values-en-rIN.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.4917089Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-es\\values-es.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-es\\values-es.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.5091507Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-es-rUS\\values-es-rUS.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-es-rUS\\values-es-rUS.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.5258223Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-et\\values-et.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-et\\values-et.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.5424988Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-eu\\values-eu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-eu\\values-eu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.5581610Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-fa\\values-fa.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-fa\\values-fa.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.5747846Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-fi\\values-fi.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-fi\\values-fi.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.5888184Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-fr\\values-fr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-fr\\values-fr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.6046535Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-fr-rCA\\values-fr-rCA.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-fr-rCA\\values-fr-rCA.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.6209285Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-gl\\values-gl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-gl\\values-gl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.6376716Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-gu\\values-gu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-gu\\values-gu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.6535481Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-hi\\values-hi.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-hi\\values-hi.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.6692484Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-hr\\values-hr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-hr\\values-hr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.6857032Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-hu\\values-hu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-hu\\values-hu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.7020916Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-hy\\values-hy.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-hy\\values-hy.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.7178874Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-in\\values-in.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-in\\values-in.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.7348498Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-is\\values-is.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-is\\values-is.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.7524438Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-it\\values-it.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-it\\values-it.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.7692480Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-iw\\values-iw.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-iw\\values-iw.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.7851808Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-ja\\values-ja.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-ja\\values-ja.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.8018569Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-ka\\values-ka.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-ka\\values-ka.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.8182092Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-kk\\values-kk.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-kk\\values-kk.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.8347581Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-km\\values-km.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-km\\values-km.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.8495416Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-kn\\values-kn.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-kn\\values-kn.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.8658885Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-ko\\values-ko.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-ko\\values-ko.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.8825938Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-ky\\values-ky.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-ky\\values-ky.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.8994271Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-lo\\values-lo.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-lo\\values-lo.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.9121412Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-lt\\values-lt.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-lt\\values-lt.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.9290072Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-lv\\values-lv.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-lv\\values-lv.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.9450550Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-mk\\values-mk.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-mk\\values-mk.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.9623610Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-ml\\values-ml.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-ml\\values-ml.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.9782432Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-mn\\values-mn.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-mn\\values-mn.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:20.9956852Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-mr\\values-mr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-mr\\values-mr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.0117234Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-ms\\values-ms.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-ms\\values-ms.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.0279025Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-my\\values-my.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-my\\values-my.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.0437508Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-nb\\values-nb.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-nb\\values-nb.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.0609947Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-ne\\values-ne.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-ne\\values-ne.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.0749153Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-nl\\values-nl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-nl\\values-nl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.0910324Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-or\\values-or.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-or\\values-or.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.1093303Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-pa\\values-pa.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-pa\\values-pa.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.1264249Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-pl\\values-pl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-pl\\values-pl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.1441090Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-pt\\values-pt.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-pt\\values-pt.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.1493711Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-pt-rBR\\values-pt-rBR.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-pt-rBR\\values-pt-rBR.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.1543471Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-pt-rPT\\values-pt-rPT.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-pt-rPT\\values-pt-rPT.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.1723728Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-ro\\values-ro.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-ro\\values-ro.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.1905907Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-ru\\values-ru.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-ru\\values-ru.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.2071343Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-si\\values-si.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-si\\values-si.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.2223516Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-sk\\values-sk.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-sk\\values-sk.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.2390230Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-sl\\values-sl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-sl\\values-sl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.2584381Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-sq\\values-sq.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-sq\\values-sq.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.2766215Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-sr\\values-sr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-sr\\values-sr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.2909554Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-sv\\values-sv.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-sv\\values-sv.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.3065833Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-sw\\values-sw.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-sw\\values-sw.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.3222794Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-ta\\values-ta.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-ta\\values-ta.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.3365719Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-te\\values-te.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-te\\values-te.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.3518279Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-th\\values-th.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-th\\values-th.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.3677614Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-tl\\values-tl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-tl\\values-tl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.3853042Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-tr\\values-tr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-tr\\values-tr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.4012810Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-uk\\values-uk.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-uk\\values-uk.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.4168170Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-ur\\values-ur.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-ur\\values-ur.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.4319111Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-uz\\values-uz.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-uz\\values-uz.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.4488738Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-vi\\values-vi.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-vi\\values-vi.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.4646465Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-zh-rCN\\values-zh-rCN.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-zh-rCN\\values-zh-rCN.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.4797736Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-zh-rHK\\values-zh-rHK.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-zh-rHK\\values-zh-rHK.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.4967703Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-zh-rTW\\values-zh-rTW.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-zh-rTW\\values-zh-rTW.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.5119319Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-zu\\values-zu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values-zu\\values-zu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.5311450Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.5882254Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.6065316Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.6080759Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.6096317Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.6128809Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.6173504Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\flat\\138.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\flat\\138.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.6261494Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.6316711Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.6509910Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\139\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\139\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.8176825Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\139\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\139\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.8343977Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\139\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\139\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.8359054Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\139\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\139\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.8390067Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\139\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\139\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.8425079Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\139\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\139\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.8468887Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\139\\jl\\flat\\139.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\139\\jl\\flat\\139.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.8564542Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\139\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\139\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.8616299Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\139\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\139\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.8777285Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\140\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\140\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.8946647Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\140\\jl\\baseline-prof.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\140\\jl\\baseline-prof.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.9171869Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\140\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\140\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.9396248Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\140\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\140\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.9408641Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\140\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\140\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.9554790Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\140\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\140\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.9717502Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\140\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\140\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.9864817Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\140\\jl\\flat\\140.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\140\\jl\\flat\\140.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:21.9954027Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\140\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\140\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.0115334Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\140\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\140\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.0302142Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.0476716Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\annotations.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\annotations.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.0741555Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.0976230Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.1128792Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\proguard.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\proguard.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.1312823Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.1499174Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.1700737Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.1944034Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\aidl\\android\\support\\v4\\media\\MediaDescriptionCompat.aidl","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\aidl\\android\\support\\v4\\media\\MediaDescriptionCompat.aidl","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.2102213Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\aidl\\android\\support\\v4\\media\\MediaMetadataCompat.aidl","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\aidl\\android\\support\\v4\\media\\MediaMetadataCompat.aidl","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.2268100Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\aidl\\android\\support\\v4\\media\\RatingCompat.aidl","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\aidl\\android\\support\\v4\\media\\RatingCompat.aidl","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.2448454Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\aidl\\android\\support\\v4\\media\\session\\MediaSessionCompat.aidl","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\aidl\\android\\support\\v4\\media\\session\\MediaSessionCompat.aidl","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.2603341Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\aidl\\android\\support\\v4\\media\\session\\ParcelableVolumeInfo.aidl","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\aidl\\android\\support\\v4\\media\\session\\ParcelableVolumeInfo.aidl","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.2764299Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\aidl\\android\\support\\v4\\media\\session\\PlaybackStateCompat.aidl","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\aidl\\android\\support\\v4\\media\\session\\PlaybackStateCompat.aidl","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.3008726Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\flat\\141.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\flat\\141.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.3103790Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.3291609Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\res\\layout\\notification_media_action.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\res\\layout\\notification_media_action.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.3435778Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\res\\layout\\notification_media_cancel_action.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\res\\layout\\notification_media_cancel_action.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.3628906Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\res\\layout\\notification_template_big_media.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\res\\layout\\notification_template_big_media.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.3806967Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\res\\layout\\notification_template_big_media_custom.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\res\\layout\\notification_template_big_media_custom.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.4002279Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\res\\layout\\notification_template_big_media_narrow.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\res\\layout\\notification_template_big_media_narrow.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.4203654Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\res\\layout\\notification_template_big_media_narrow_custom.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\res\\layout\\notification_template_big_media_narrow_custom.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.4377615Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\res\\layout\\notification_template_lines_media.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\res\\layout\\notification_template_lines_media.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.4546303Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\res\\layout\\notification_template_media.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\res\\layout\\notification_template_media.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.4709648Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\res\\layout\\notification_template_media_custom.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\res\\layout\\notification_template_media_custom.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.4921838Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.5095048Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\res\\values-v21\\values-v21.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\res\\values-v21\\values-v21.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.5228706Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\res\\values-v24\\values-v24.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\res\\values-v24\\values-v24.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.5431332Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.6818359Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.6993022Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.7006322Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.7026142Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.7054328Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.7104223Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\flat\\142.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\flat\\142.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.7169831Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.7324662Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.7512586Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\143\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\143\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.8392600Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\143\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\143\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.8563225Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\143\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\143\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.8758793Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\144\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\144\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.9637146Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\144\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\144\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.9798161Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\144\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\144\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:22.9981325Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\145\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\145\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.0187192Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\145\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\145\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.0348248Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\145\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\145\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.0553811Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\146\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\146\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.0727404Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\146\\jl\\annotations.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\146\\jl\\annotations.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.0961401Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\146\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\146\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.0976450Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\146\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\146\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.1084466Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\146\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\146\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.1276751Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.1450117Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\annotations.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\annotations.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.1708265Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.1919584Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.1934908Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.2076803Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.2330389Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.2525187Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\flat\\147.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\flat\\147.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.2616636Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.2801303Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\layout\\browser_actions_context_menu_page.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\layout\\browser_actions_context_menu_page.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.2986465Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\layout\\browser_actions_context_menu_row.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\layout\\browser_actions_context_menu_row.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.3141388Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.3316030Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-af\\values-af.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-af\\values-af.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.3488532Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-am\\values-am.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-am\\values-am.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.3662533Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-ar\\values-ar.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-ar\\values-ar.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.3839553Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-as\\values-as.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-as\\values-as.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.3988845Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-az\\values-az.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-az\\values-az.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.4169900Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-b+sr+Latn\\values-b+sr+Latn.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-b+sr+Latn\\values-b+sr+Latn.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.4330673Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-be\\values-be.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-be\\values-be.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.4512995Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-bg\\values-bg.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-bg\\values-bg.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.4681878Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-bn\\values-bn.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-bn\\values-bn.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.4880096Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-bs\\values-bs.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-bs\\values-bs.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.5023098Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-ca\\values-ca.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-ca\\values-ca.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.5190132Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-cs\\values-cs.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-cs\\values-cs.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.5364463Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-da\\values-da.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-da\\values-da.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.5537377Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-de\\values-de.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-de\\values-de.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.5689918Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-el\\values-el.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-el\\values-el.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.5865865Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-en-rAU\\values-en-rAU.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-en-rAU\\values-en-rAU.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.5908835Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-en-rCA\\values-en-rCA.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-en-rCA\\values-en-rCA.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.5953349Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-en-rGB\\values-en-rGB.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-en-rGB\\values-en-rGB.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.5998802Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-en-rIN\\values-en-rIN.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-en-rIN\\values-en-rIN.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.6185496Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-en-rXC\\values-en-rXC.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-en-rXC\\values-en-rXC.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.6350984Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-es\\values-es.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-es\\values-es.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.6532831Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-es-rUS\\values-es-rUS.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-es-rUS\\values-es-rUS.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.6700782Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-et\\values-et.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-et\\values-et.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.6873649Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-eu\\values-eu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-eu\\values-eu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.7044332Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-fa\\values-fa.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-fa\\values-fa.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.7214069Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-fi\\values-fi.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-fi\\values-fi.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.7382854Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-fr\\values-fr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-fr\\values-fr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.7558914Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-fr-rCA\\values-fr-rCA.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-fr-rCA\\values-fr-rCA.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.7739861Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-gl\\values-gl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-gl\\values-gl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.7912586Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-gu\\values-gu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-gu\\values-gu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.8080420Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-hi\\values-hi.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-hi\\values-hi.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.8240575Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-hr\\values-hr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-hr\\values-hr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.8413927Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-hu\\values-hu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-hu\\values-hu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.8562307Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-hy\\values-hy.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-hy\\values-hy.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.8703764Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-in\\values-in.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-in\\values-in.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.8898292Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-is\\values-is.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-is\\values-is.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.9025489Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-it\\values-it.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-it\\values-it.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.9207527Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-iw\\values-iw.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-iw\\values-iw.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.9400645Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-ja\\values-ja.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-ja\\values-ja.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.9602888Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-ka\\values-ka.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-ka\\values-ka.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.9795741Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-kk\\values-kk.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-kk\\values-kk.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:23.9979673Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-km\\values-km.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-km\\values-km.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.0169042Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-kn\\values-kn.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-kn\\values-kn.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.0349878Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-ko\\values-ko.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-ko\\values-ko.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.0522499Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-ky\\values-ky.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-ky\\values-ky.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.0688929Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-lo\\values-lo.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-lo\\values-lo.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.0859719Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-lt\\values-lt.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-lt\\values-lt.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.1034768Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-lv\\values-lv.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-lv\\values-lv.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.1173688Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-mk\\values-mk.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-mk\\values-mk.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.1311804Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-ml\\values-ml.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-ml\\values-ml.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.1492030Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-mn\\values-mn.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-mn\\values-mn.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.1659125Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-mr\\values-mr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-mr\\values-mr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.1798892Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-ms\\values-ms.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-ms\\values-ms.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.1973059Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-my\\values-my.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-my\\values-my.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.2133370Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-nb\\values-nb.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-nb\\values-nb.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.2303835Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-ne\\values-ne.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-ne\\values-ne.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.2474134Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-nl\\values-nl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-nl\\values-nl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.2648215Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-or\\values-or.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-or\\values-or.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.2831508Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-pa\\values-pa.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-pa\\values-pa.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.2990211Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-pl\\values-pl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-pl\\values-pl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.3177927Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-pt\\values-pt.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-pt\\values-pt.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.3224104Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-pt-rBR\\values-pt-rBR.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-pt-rBR\\values-pt-rBR.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.3393291Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-pt-rPT\\values-pt-rPT.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-pt-rPT\\values-pt-rPT.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.3552456Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-ro\\values-ro.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-ro\\values-ro.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.3711654Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-ru\\values-ru.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-ru\\values-ru.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.3880087Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-si\\values-si.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-si\\values-si.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.4060204Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-sk\\values-sk.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-sk\\values-sk.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.4217485Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-sl\\values-sl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-sl\\values-sl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.4365585Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-sq\\values-sq.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-sq\\values-sq.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.4527356Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-sr\\values-sr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-sr\\values-sr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.4672384Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-sv\\values-sv.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-sv\\values-sv.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.4843970Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-sw\\values-sw.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-sw\\values-sw.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.5016736Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-ta\\values-ta.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-ta\\values-ta.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.5185000Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-te\\values-te.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-te\\values-te.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.5356711Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-th\\values-th.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-th\\values-th.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.5561325Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-tl\\values-tl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-tl\\values-tl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.5729667Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-tr\\values-tr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-tr\\values-tr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.5885579Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-uk\\values-uk.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-uk\\values-uk.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.6044221Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-ur\\values-ur.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-ur\\values-ur.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.6180904Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-uz\\values-uz.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-uz\\values-uz.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.6359692Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-vi\\values-vi.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-vi\\values-vi.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.6516388Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-zh-rCN\\values-zh-rCN.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-zh-rCN\\values-zh-rCN.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.6666252Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-zh-rHK\\values-zh-rHK.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-zh-rHK\\values-zh-rHK.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.6821843Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-zh-rTW\\values-zh-rTW.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-zh-rTW\\values-zh-rTW.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.6954327Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-zu\\values-zu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\values-zu\\values-zu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.7138727Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\xml\\image_share_filepaths.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\res\\xml\\image_share_filepaths.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.7308446Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.7490041Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\annotations.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\annotations.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.8488648Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.8517565Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.8671457Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\149\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\149\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.8918329Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\149\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\149\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.9176547Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\149\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\149\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.9317784Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\149\\jl\\proguard.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\149\\jl\\proguard.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.9468513Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\149\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\149\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.9633123Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\149\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\149\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.9812708Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\149\\jl\\flat\\149.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\149\\jl\\flat\\149.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:24.9976784Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\149\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\149\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:25.0247344Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\150\\jl\\libs\\ED64959F88B22E6D.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\150\\jl\\libs\\ED64959F88B22E6D.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:25.0466887Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\151\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\151\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:25.0605039Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\151\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\151\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:25.0800728Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\151\\jl\\.net\\__res_name_case_map.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\151\\jl\\.net\\__res_name_case_map.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:25.0978309Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\151\\jl\\flat\\anim_enterfromleft.xml.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\151\\jl\\flat\\anim_enterfromleft.xml.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:25.1137052Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\151\\jl\\flat\\anim_enterfromright.xml.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\151\\jl\\flat\\anim_enterfromright.xml.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:25.1308347Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\151\\jl\\flat\\anim_exittoleft.xml.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\151\\jl\\flat\\anim_exittoleft.xml.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:25.1466301Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\151\\jl\\flat\\anim_exittoright.xml.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\151\\jl\\flat\\anim_exittoright.xml.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:25.1629854Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\151\\jl\\flat\\layout_flyoutcontent.xml.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\151\\jl\\flat\\layout_flyoutcontent.xml.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:25.1799423Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\151\\jl\\flat\\layout_shellcontent.xml.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\151\\jl\\flat\\layout_shellcontent.xml.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:25.1918208Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\151\\jl\\flat\\values_strings.arsc.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\151\\jl\\flat\\values_strings.arsc.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:25.2090060Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\151\\jl\\res\\anim\\enterfromleft.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\151\\jl\\res\\anim\\enterfromleft.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:25.2239334Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\151\\jl\\res\\anim\\enterfromright.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\151\\jl\\res\\anim\\enterfromright.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:25.2387189Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\151\\jl\\res\\anim\\exittoleft.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\151\\jl\\res\\anim\\exittoleft.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:25.2537989Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\151\\jl\\res\\anim\\exittoright.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\151\\jl\\res\\anim\\exittoright.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:25.2713034Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\151\\jl\\res\\layout\\flyoutcontent.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\151\\jl\\res\\layout\\flyoutcontent.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:25.2866169Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\151\\jl\\res\\layout\\shellcontent.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\151\\jl\\res\\layout\\shellcontent.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:25.3033953Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\151\\jl\\res\\values\\strings.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\151\\jl\\res\\values\\strings.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:25.3277918Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:25.3451046Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:25.3611026Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\.net\\__res_name_case_map.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\.net\\__res_name_case_map.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:25.3827109Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\flat\\layout_tabbar.xml.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\flat\\layout_tabbar.xml.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:25.3985835Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\flat\\layout_toolbar.xml.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\flat\\layout_toolbar.xml.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:25.4152438Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\flat\\values_attrs.arsc.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\flat\\values_attrs.arsc.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:25.4304872Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\flat\\values_styles.arsc.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\flat\\values_styles.arsc.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:25.4474854Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\res\\layout\\tabbar.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\res\\layout\\tabbar.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:25.4622118Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\res\\layout\\toolbar.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\res\\layout\\toolbar.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:25.4772743Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\res\\values\\attrs.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\res\\values\\attrs.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:25.4886224Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\res\\values\\styles.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\res\\values\\styles.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:25.5065212Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\153\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\153\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:25.8291421Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\153\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\153\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:25.8488487Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\153\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\153\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:25.8652705Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\153\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\153\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:25.8822296Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\153\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\153\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:25.8982550Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\153\\jl\\flat\\values_values.arsc.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\153\\jl\\flat\\values_values.arsc.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:25.9179845Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\153\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\153\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:25.9350416Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\153\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\153\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:25.9599444Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:25.9806519Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:26.0001295Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\.net\\__res_name_case_map.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\.net\\__res_name_case_map.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:26.0179670Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\flat\\anim_nav_default_enter_anim.xml.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\flat\\anim_nav_default_enter_anim.xml.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:26.0340139Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\flat\\anim_nav_default_exit_anim.xml.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\flat\\anim_nav_default_exit_anim.xml.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:26.0505756Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\flat\\anim_nav_default_pop_enter_anim.xml.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\flat\\anim_nav_default_pop_enter_anim.xml.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:26.0660922Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\flat\\anim_nav_default_pop_exit_anim.xml.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\flat\\anim_nav_default_pop_exit_anim.xml.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:26.0821276Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\flat\\drawable_maui_splash.xml.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\flat\\drawable_maui_splash.xml.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:26.0951152Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\flat\\drawable_maui_splash_image.xml.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\flat\\drawable_maui_splash_image.xml.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:26.1118084Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\flat\\layout_drawer_layout.xml.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\flat\\layout_drawer_layout.xml.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:26.1318582Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\flat\\layout_fragment_backstack.xml.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\flat\\layout_fragment_backstack.xml.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:26.1500685Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\flat\\layout_navigationlayout.xml.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\flat\\layout_navigationlayout.xml.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:26.1662382Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\flat\\values_attr.arsc.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\flat\\values_attr.arsc.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:26.1774802Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\flat\\values_colors.arsc.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\flat\\values_colors.arsc.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:26.1930518Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\flat\\values_styles.arsc.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\flat\\values_styles.arsc.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:26.2107616Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\res\\anim\\nav_default_enter_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\res\\anim\\nav_default_enter_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:26.2252128Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\res\\anim\\nav_default_exit_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\res\\anim\\nav_default_exit_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:26.2389716Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\res\\anim\\nav_default_pop_enter_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\res\\anim\\nav_default_pop_enter_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:26.2543631Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\res\\anim\\nav_default_pop_exit_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\res\\anim\\nav_default_pop_exit_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:26.2684705Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\res\\drawable\\maui_splash.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\res\\drawable\\maui_splash.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:26.2836227Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\res\\drawable\\maui_splash_image.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\res\\drawable\\maui_splash_image.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:26.2996108Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\res\\layout\\drawer_layout.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\res\\layout\\drawer_layout.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:26.3120192Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\res\\layout\\fragment_backstack.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\res\\layout\\fragment_backstack.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:26.3279295Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\res\\layout\\navigationlayout.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\res\\layout\\navigationlayout.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:26.3461898Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\res\\values\\attr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\res\\values\\attr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:26.3576496Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\res\\values\\colors.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\res\\values\\colors.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:26.3766069Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\res\\values\\styles.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\res\\values\\styles.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:26.4005052Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:26.4183054Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:26.4371188Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\.net\\__res_name_case_map.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\.net\\__res_name_case_map.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:26.4575730Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\flat\\xml_microsoft_maui_essentials_fileprovider_file_paths.xml.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\flat\\xml_microsoft_maui_essentials_fileprovider_file_paths.xml.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:26.4745451Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\res\\xml\\microsoft_maui_essentials_fileprovider_file_paths.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\res\\xml\\microsoft_maui_essentials_fileprovider_file_paths.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:26.5103915Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\156\\jl\\libs\\F975D0960055A5E3.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\156\\jl\\libs\\F975D0960055A5E3.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:26.5258312Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\88\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\88\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:26.6987473Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\88\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\88\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:26.7114249Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\88\\jl\\proguard.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\88\\jl\\proguard.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:26.7131850Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\88\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\88\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:26.7308142Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\88\\jl\\aidl\\androidx\\versionedparcelable\\ParcelImpl.aidl","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\88\\jl\\aidl\\androidx\\versionedparcelable\\ParcelImpl.aidl","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:26.7509295Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\89\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\89\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:26.8447615Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\89\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\89\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:26.8460978Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\89\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\89\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:26.8648875Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\90\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\90\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:26.9672240Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\90\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\90\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:26.9897069Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\90\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\90\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.0016203Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\90\\jl\\proguard.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\90\\jl\\proguard.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.0043261Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\90\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\90\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.0214260Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\90\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\90\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.0375851Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\90\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\90\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.0565598Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\90\\jl\\flat\\90.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\90\\jl\\flat\\90.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.0768567Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\90\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\90\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.0958794Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\90\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\90\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.1131238Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\91\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\91\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.2073172Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\91\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\91\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.2323772Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\91\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\91\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.2499132Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\91\\jl\\proguard.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\91\\jl\\proguard.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.2518644Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\91\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\91\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.2531430Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\91\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\91\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.2700743Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\91\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\91\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.2747607Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\91\\jl\\flat\\91.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\91\\jl\\flat\\91.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.2975649Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\91\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\91\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.3114858Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\91\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\91\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.3309501Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.3520263Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\annotations.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\annotations.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.3740566Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.3987068Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.4159733Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\proguard.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\proguard.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.4299840Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.4475020Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.4733491Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.4952968Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\aidl\\android\\support\\v4\\os\\ResultReceiver.aidl","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\aidl\\android\\support\\v4\\os\\ResultReceiver.aidl","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.5225664Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\flat\\92.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\flat\\92.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.5302521Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.5527851Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\drawable\\notification_bg.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\drawable\\notification_bg.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.5708997Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\drawable\\notification_bg_low.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\drawable\\notification_bg_low.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.5889243Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\drawable\\notification_icon_background.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\drawable\\notification_icon_background.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.6052268Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\drawable\\notification_tile_bg.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\drawable\\notification_tile_bg.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.6204563Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\drawable-hdpi-v4\\notification_bg_low_normal.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\drawable-hdpi-v4\\notification_bg_low_normal.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.6358195Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\drawable-hdpi-v4\\notification_bg_low_pressed.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\drawable-hdpi-v4\\notification_bg_low_pressed.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.6479825Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\drawable-hdpi-v4\\notification_bg_normal.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\drawable-hdpi-v4\\notification_bg_normal.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.6588425Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\drawable-hdpi-v4\\notification_bg_normal_pressed.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\drawable-hdpi-v4\\notification_bg_normal_pressed.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.6693155Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\drawable-hdpi-v4\\notify_panel_notification_icon_bg.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\drawable-hdpi-v4\\notify_panel_notification_icon_bg.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.6864692Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\drawable-mdpi-v4\\notification_bg_low_normal.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\drawable-mdpi-v4\\notification_bg_low_normal.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.6972582Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\drawable-mdpi-v4\\notification_bg_low_pressed.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\drawable-mdpi-v4\\notification_bg_low_pressed.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.7122903Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\drawable-mdpi-v4\\notification_bg_normal.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\drawable-mdpi-v4\\notification_bg_normal.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.7247347Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\drawable-mdpi-v4\\notification_bg_normal_pressed.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\drawable-mdpi-v4\\notification_bg_normal_pressed.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.7356835Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\drawable-mdpi-v4\\notify_panel_notification_icon_bg.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\drawable-mdpi-v4\\notify_panel_notification_icon_bg.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.7560052Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\drawable-v21\\notification_action_background.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\drawable-v21\\notification_action_background.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.7724562Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\drawable-xhdpi-v4\\notification_bg_low_normal.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\drawable-xhdpi-v4\\notification_bg_low_normal.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.7866036Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\drawable-xhdpi-v4\\notification_bg_low_pressed.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\drawable-xhdpi-v4\\notification_bg_low_pressed.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.8022241Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\drawable-xhdpi-v4\\notification_bg_normal.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\drawable-xhdpi-v4\\notification_bg_normal.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.8180636Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\drawable-xhdpi-v4\\notification_bg_normal_pressed.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\drawable-xhdpi-v4\\notification_bg_normal_pressed.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.8345555Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\drawable-xhdpi-v4\\notify_panel_notification_icon_bg.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\drawable-xhdpi-v4\\notify_panel_notification_icon_bg.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.8538533Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\layout\\custom_dialog.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\layout\\custom_dialog.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.8723240Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\layout\\notification_action.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\layout\\notification_action.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.8866005Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\layout\\notification_action_tombstone.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\layout\\notification_action_tombstone.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.9041792Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\layout\\notification_template_custom_big.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\layout\\notification_template_custom_big.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.9180173Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\layout\\notification_template_icon_group.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\layout\\notification_template_icon_group.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.9339360Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\layout\\notification_template_part_chronometer.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\layout\\notification_template_part_chronometer.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.9540793Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\layout\\notification_template_part_time.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\layout\\notification_template_part_time.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.9753188Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\layout-v16\\notification_template_custom_big.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\layout-v16\\notification_template_custom_big.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:27.9969457Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\layout-v21\\notification_action.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\layout-v21\\notification_action.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.0141360Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\layout-v21\\notification_action_tombstone.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\layout-v21\\notification_action_tombstone.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.0346173Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\layout-v21\\notification_template_custom_big.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\layout-v21\\notification_template_custom_big.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.0532470Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\layout-v21\\notification_template_icon_group.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\layout-v21\\notification_template_icon_group.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.0731027Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\menu\\example_menu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\menu\\example_menu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.0916632Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\menu\\example_menu2.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\menu\\example_menu2.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.1111083Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.1264466Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-af\\values-af.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-af\\values-af.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.1301928Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-am\\values-am.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-am\\values-am.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.1335284Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-ar\\values-ar.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-ar\\values-ar.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.1486001Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-as\\values-as.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-as\\values-as.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.1527619Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-az\\values-az.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-az\\values-az.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.1578064Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-b+sr+Latn\\values-b+sr+Latn.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-b+sr+Latn\\values-b+sr+Latn.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.1621063Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-be\\values-be.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-be\\values-be.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.1671903Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-bg\\values-bg.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-bg\\values-bg.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.1716359Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-bn\\values-bn.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-bn\\values-bn.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.1766919Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-bs\\values-bs.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-bs\\values-bs.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.1809621Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-ca\\values-ca.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-ca\\values-ca.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.1866373Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-cs\\values-cs.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-cs\\values-cs.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.1912242Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-da\\values-da.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-da\\values-da.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.1959188Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-de\\values-de.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-de\\values-de.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.2001786Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-el\\values-el.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-el\\values-el.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.2056238Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-en-rAU\\values-en-rAU.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-en-rAU\\values-en-rAU.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.2095300Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-en-rCA\\values-en-rCA.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-en-rCA\\values-en-rCA.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.2143728Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-en-rGB\\values-en-rGB.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-en-rGB\\values-en-rGB.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.2193672Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-en-rIN\\values-en-rIN.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-en-rIN\\values-en-rIN.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.2349944Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-en-rXC\\values-en-rXC.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-en-rXC\\values-en-rXC.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.2400233Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-es\\values-es.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-es\\values-es.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.2451080Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-es-rUS\\values-es-rUS.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-es-rUS\\values-es-rUS.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.2498848Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-et\\values-et.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-et\\values-et.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.2552430Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-eu\\values-eu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-eu\\values-eu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.2598880Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-fa\\values-fa.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-fa\\values-fa.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.2645107Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-fi\\values-fi.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-fi\\values-fi.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.2691353Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-fr\\values-fr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-fr\\values-fr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.2740396Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-fr-rCA\\values-fr-rCA.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-fr-rCA\\values-fr-rCA.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.2895616Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-gl\\values-gl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-gl\\values-gl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.2944918Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-gu\\values-gu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-gu\\values-gu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.2990507Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-hi\\values-hi.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-hi\\values-hi.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.3039356Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-hr\\values-hr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-hr\\values-hr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.3084632Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-hu\\values-hu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-hu\\values-hu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.3133036Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-hy\\values-hy.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-hy\\values-hy.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.3175383Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-in\\values-in.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-in\\values-in.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.3225002Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-is\\values-is.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-is\\values-is.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.3268440Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-it\\values-it.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-it\\values-it.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.3316751Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-iw\\values-iw.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-iw\\values-iw.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.3356930Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-ja\\values-ja.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-ja\\values-ja.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.3402713Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-ka\\values-ka.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-ka\\values-ka.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.3444806Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-kk\\values-kk.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-kk\\values-kk.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.3490920Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-km\\values-km.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-km\\values-km.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.3533611Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-kn\\values-kn.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-kn\\values-kn.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.3589664Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-ko\\values-ko.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-ko\\values-ko.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.3633836Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-ky\\values-ky.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-ky\\values-ky.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.3679646Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-lo\\values-lo.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-lo\\values-lo.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.3719352Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-lt\\values-lt.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-lt\\values-lt.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.3786680Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-lv\\values-lv.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-lv\\values-lv.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.3827008Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-mk\\values-mk.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-mk\\values-mk.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.3867579Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-ml\\values-ml.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-ml\\values-ml.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.3911930Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-mn\\values-mn.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-mn\\values-mn.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.4069199Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-mr\\values-mr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-mr\\values-mr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.4108629Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-ms\\values-ms.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-ms\\values-ms.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.4285454Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-my\\values-my.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-my\\values-my.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.4327733Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-nb\\values-nb.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-nb\\values-nb.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.4368571Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-ne\\values-ne.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-ne\\values-ne.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.4408945Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-nl\\values-nl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-nl\\values-nl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.4469727Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-or\\values-or.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-or\\values-or.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.4511522Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-pa\\values-pa.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-pa\\values-pa.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.4558760Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-pl\\values-pl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-pl\\values-pl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.4600800Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-pt\\values-pt.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-pt\\values-pt.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.4642835Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-pt-rBR\\values-pt-rBR.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-pt-rBR\\values-pt-rBR.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.4691348Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-pt-rPT\\values-pt-rPT.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-pt-rPT\\values-pt-rPT.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.4733845Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-ro\\values-ro.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-ro\\values-ro.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.4773990Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-ru\\values-ru.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-ru\\values-ru.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.4832800Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-si\\values-si.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-si\\values-si.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.4879040Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-sk\\values-sk.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-sk\\values-sk.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.4923532Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-sl\\values-sl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-sl\\values-sl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.4961491Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-sq\\values-sq.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-sq\\values-sq.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.5006024Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-sr\\values-sr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-sr\\values-sr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.5046744Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-sv\\values-sv.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-sv\\values-sv.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.5089449Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-sw\\values-sw.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-sw\\values-sw.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.5129916Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-ta\\values-ta.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-ta\\values-ta.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.5177594Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-te\\values-te.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-te\\values-te.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.5220490Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-th\\values-th.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-th\\values-th.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.5266437Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-tl\\values-tl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-tl\\values-tl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.5309775Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-tr\\values-tr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-tr\\values-tr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.5351783Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-uk\\values-uk.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-uk\\values-uk.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.5508053Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-ur\\values-ur.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-ur\\values-ur.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.5556265Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-uz\\values-uz.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-uz\\values-uz.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.5691541Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-v16\\values-v16.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-v16\\values-v16.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.5875547Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-v21\\values-v21.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-v21\\values-v21.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.5925948Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-vi\\values-vi.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-vi\\values-vi.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.5970168Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-zh-rCN\\values-zh-rCN.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-zh-rCN\\values-zh-rCN.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.6019032Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-zh-rHK\\values-zh-rHK.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-zh-rHK\\values-zh-rHK.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.6066973Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-zh-rTW\\values-zh-rTW.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-zh-rTW\\values-zh-rTW.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.6112300Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-zu\\values-zu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values-zu\\values-zu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.6304418Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.8503920Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.8626921Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.8769692Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\94\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\94\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.8954606Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\94\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\94\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.9114350Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\94\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\94\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.9306628Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\95\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\95\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.9669643Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\95\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\95\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.9683758Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\95\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\95\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.9772005Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\95\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\95\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:28.9929934Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\96\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\96\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.0823377Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\96\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\96\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.1046936Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\96\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\96\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.1166762Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\96\\jl\\proguard.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\96\\jl\\proguard.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.1212467Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\96\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\96\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.1371655Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\96\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\96\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.1604157Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\96\\jl\\flat\\96.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\96\\jl\\flat\\96.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.1701232Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\96\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\96\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.1858274Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\96\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\96\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.2024937Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\97\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\97\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.2169048Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\97\\jl\\annotations.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\97\\jl\\annotations.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.2462291Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\97\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\97\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.2681453Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\97\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\97\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.2832211Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\97\\jl\\proguard.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\97\\jl\\proguard.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.2980625Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\97\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\97\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.3125730Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\97\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\97\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.3305707Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\97\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\97\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.3407385Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\97\\jl\\flat\\97.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\97\\jl\\flat\\97.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.3454694Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\97\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\97\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.3572084Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\97\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\97\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.3712287Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\98\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\98\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.5595174Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\98\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\98\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.5786934Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\98\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\98\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.5934425Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\98\\jl\\proguard.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\98\\jl\\proguard.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.5961223Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\98\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\98\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.6102874Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\98\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\98\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.6294313Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\98\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\98\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.6514153Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\98\\jl\\flat\\98.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\98\\jl\\flat\\98.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.6614371Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\98\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\98\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.6767329Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\98\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\98\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.6928848Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\99\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\99\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.7972520Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\99\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\99\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.8241345Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\99\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\99\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.8259315Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\99\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\99\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.8286570Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\99\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\99\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.8505505Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\99\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\99\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.8552589Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\99\\jl\\flat\\99.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\99\\jl\\flat\\99.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.8650305Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\99\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\99\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.8709290Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\99\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\lp\\99\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.9270510Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\ref\\PlantLady.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\ref\\PlantLady.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.9773976Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\refint\\PlantLady.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\refint\\PlantLady.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.9810704Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\stamp\\_BuildLibraryImportsCache.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\stamp\\_BuildLibraryImportsCache.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.9824573Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\stamp\\_CleanIntermediateIfNeeded.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\stamp\\_CleanIntermediateIfNeeded.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.9848932Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\stamp\\_ConvertResourcesCases.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\stamp\\_ConvertResourcesCases.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:29.9864850Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-android\\stamp\\_ResolveLibraryProjectImports.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-android\\stamp\\_ResolveLibraryProjectImports.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:30.0094874Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-ios\\.NETCoreApp,Version=v6.0.AssemblyAttributes.cs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-ios\\.NETCoreApp,Version=v6.0.AssemblyAttributes.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:30.0307544Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-ios\\PlantLady.AssemblyInfo.cs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-ios\\PlantLady.AssemblyInfo.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:30.0449790Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-ios\\PlantLady.AssemblyInfoInputs.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-ios\\PlantLady.AssemblyInfoInputs.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:30.0638861Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-ios\\PlantLady.assets.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-ios\\PlantLady.assets.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:30.0858244Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-ios\\PlantLady.csproj.AssemblyReference.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-ios\\PlantLady.csproj.AssemblyReference.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:30.0874763Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-ios\\PlantLady.csproj.BuildWithSkipAnalyzers","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-ios\\PlantLady.csproj.BuildWithSkipAnalyzers","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:30.1020753Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-ios\\PlantLady.csproj.CoreCompileInputs.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-ios\\PlantLady.csproj.CoreCompileInputs.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:30.1180318Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-ios\\PlantLady.csproj.FileListAbsolute.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-ios\\PlantLady.csproj.FileListAbsolute.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:30.1786224Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-ios\\PlantLady.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-ios\\PlantLady.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:30.1959962Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-ios\\PlantLady.GeneratedMSBuildEditorConfig.editorconfig","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-ios\\PlantLady.GeneratedMSBuildEditorConfig.editorconfig","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:30.2142313Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-ios\\PlantLady.GlobalUsings.g.cs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-ios\\PlantLady.GlobalUsings.g.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:30.2349741Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-ios\\PlantLady.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-ios\\PlantLady.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:30.2362941Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-ios\\XamlC.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-ios\\XamlC.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:30.2517442Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-ios\\_IsIncrementalBuild","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-ios\\_IsIncrementalBuild","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:30.2746451Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-ios\\actool\\_BundleResourceWithLogicalName.items","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-ios\\actool\\_BundleResourceWithLogicalName.items","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:30.2779369Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-ios\\actool\\_PartialAppManifest.items","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-ios\\actool\\_PartialAppManifest.items","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:30.2829398Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-ios\\coremlc\\_BundleResourceWithLogicalName.items","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-ios\\coremlc\\_BundleResourceWithLogicalName.items","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:30.2862812Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-ios\\coremlc\\_PartialAppManifest.items","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-ios\\coremlc\\_PartialAppManifest.items","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:30.3360381Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-ios\\ref\\PlantLady.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-ios\\ref\\PlantLady.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:30.3408861Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net6.0-ios\\refint\\PlantLady.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\net6.0-ios\\refint\\PlantLady.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:30.3653733Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\netstandard2.0\\.NETStandard,Version=v2.0.AssemblyAttributes.cs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\netstandard2.0\\.NETStandard,Version=v2.0.AssemblyAttributes.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:30.3847234Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\netstandard2.0\\PlantLady.AssemblyInfo.cs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\netstandard2.0\\PlantLady.AssemblyInfo.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:30.3953159Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\netstandard2.0\\PlantLady.AssemblyInfoInputs.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\netstandard2.0\\PlantLady.AssemblyInfoInputs.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:30.4064885Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\netstandard2.0\\PlantLady.GeneratedMSBuildEditorConfig.editorconfig","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\obj\\Debug\\netstandard2.0\\PlantLady.GeneratedMSBuildEditorConfig.editorconfig","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:30.4252800Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\Resources\\AmaticSC-Regular.ttf","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\Resources\\AmaticSC-Regular.ttf","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:30.4432760Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\Resources\\materialdesignicons-webfont.ttf","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\Resources\\materialdesignicons-webfont.ttf","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:30.4625414Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\Resources\\Michella-Garden.otf","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\Resources\\Michella-Garden.otf","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:30.4901436Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\Views\\HomePage.xaml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\Views\\HomePage.xaml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:30.5133200Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\Views\\HomePage.xaml.cs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\Views\\HomePage.xaml.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:30.5420228Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\Views\\PlantsPage.xaml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\Views\\PlantsPage.xaml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:30.5668647Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\Views\\PlantsPage.xaml.cs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady\\Views\\PlantsPage.xaml.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:30.5691181Z","@mt":"Project backed up to C:\\code\\PlantLady.backup\\PlantLady","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:30.5756920Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Back up project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:28:30.5798186Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Convert project file to SDK style","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:28:30.5855982Z","@mt":"Project {ProjectPath} already targets SDK {SDK}","@l":"Debug","ProjectPath":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SDK":["Microsoft.NET.Sdk"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.TryConvertRunner"} +{"@t":"2022-11-15T22:28:30.5858400Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Convert project file to SDK style","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:28:30.6655591Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:30.6657676Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ef502ca6-6eec-4191-b8fd-731d8233d0a5\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:30.6664853Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ef502ca6-6eec-4191-b8fd-731d8233d0a5\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:30.6666395Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:30.6667895Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:30.6715356Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:30.6716457Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:30.6916044Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:30.6917216Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7133ec4d-d237-4dbe-9108-831d2b80b02d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:30.6923942Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7133ec4d-d237-4dbe-9108-831d2b80b02d\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:30.6925753Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:30.6927604Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:30.7009985Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:30.7011090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:30.7048278Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Add TargetFramework for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:28:30.7309391Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:30.7310573Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\58c195d6-1db6-4fd9-b3e4-5639ed4d83ea\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:30.7318670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\58c195d6-1db6-4fd9-b3e4-5639ed4d83ea\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:30.7322186Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:30.7323857Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:30.7395744Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:30.7397096Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:30.7613544Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:30.7614779Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\da347f88-32bb-4877-a476-654358be4b6b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:30.7622435Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\da347f88-32bb-4877-a476-654358be4b6b\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:30.7624466Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:30.7626632Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:30.7711724Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:30.7713274Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:30.7739704Z","@mt":"TFM needs updated to .NET MAUI TFMs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiPlatformTargetFrameworkUpgradeStep"} +{"@t":"2022-11-15T22:28:30.7759657Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Add TargetFramework for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:28:30.7760331Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiPlatformTargetFrameworkUpgradeStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:28:30.7763558Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Add TargetFramework for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiPlatformTargetFrameworkUpgradeStep"} +{"@t":"2022-11-15T22:28:30.8031789Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:30.8033202Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6c7d0202-69e4-4d23-b092-4315988eeec8\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:30.8041137Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6c7d0202-69e4-4d23-b092-4315988eeec8\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:30.8043534Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:30.8045782Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:30.8131148Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:30.8132859Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:30.8373803Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:30.8374996Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\dacc7754-f57e-4684-85f1-6bd95c7be435\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:30.8382914Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\dacc7754-f57e-4684-85f1-6bd95c7be435\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:30.8384871Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:30.8386920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:30.8471498Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:30.8473094Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:30.8515284Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"TargetFramework","PropertyValue":"netstandard2.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:28:30.8589179Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:28:33.3149795Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets 'UAP,Version=v10.0.16299'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5275893Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5276575Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka PlantLady.PlantLady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5276804Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5277000Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka PlantLady.PlantLady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5277252Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka PlantLady.PlantLady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5277500Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka PlantLady.PlantLady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5277862Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka PlantLady.PlantLady:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5278029Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5278196Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka PlantLady.PlantLady:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5278360Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorAccent (aka PlantLady.PlantLady:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5278515Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka PlantLady.PlantLady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5278703Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka PlantLady.PlantLady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5278876Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka PlantLady.PlantLady:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5279042Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka PlantLady.PlantLady:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5279202Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5279353Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka PlantLady.PlantLady:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5279510Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka PlantLady.PlantLady:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5279684Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka PlantLady.PlantLady:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5279857Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5280069Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka PlantLady.PlantLady:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5280246Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5280419Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5280633Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5283029Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka PlantLady.PlantLady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5283319Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5283543Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka PlantLady.PlantLady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5285131Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka PlantLady.PlantLady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5285351Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka PlantLady.PlantLady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5285521Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka PlantLady.PlantLady:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5285668Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5285826Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka PlantLady.PlantLady:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5285977Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorAccent (aka PlantLady.PlantLady:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5286148Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka PlantLady.PlantLady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5286349Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka PlantLady.PlantLady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5286507Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka PlantLady.PlantLady:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5286652Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka PlantLady.PlantLady:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5286801Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5286942Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka PlantLady.PlantLady:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5287094Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka PlantLady.PlantLady:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5287247Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka PlantLady.PlantLady:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5287669Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5287852Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka PlantLady.PlantLady:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5288016Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.5288184Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:48.6068986Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:49.1477836Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\Microsoft Visual Studio\\2022\\Preview\\MSBuild\\Xamarin\\Android\\Xamarin.Android.Legacy.targets: (234, 5): The reference assemblies for MonoAndroid,Version=v1.0 were not found. To resolve this, install the Developer Pack (SDK/Targeting Pack) for this framework version or retarget your application. You can download .NET Framework Developer Packs at https://aka.ms/msbuild/developerpacks","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:49.1481755Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:49.2248964Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets 'Xamarin.iOS,Version=v1.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:49.2254599Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:28:49.2447999Z","@mt":"Added TFMs to .NET MAUI project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiPlatformTargetFrameworkUpgradeStep"} +{"@t":"2022-11-15T22:28:49.2476204Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Add TargetFramework for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiPlatformTargetFrameworkUpgradeStep"} +{"@t":"2022-11-15T22:28:51.9375979Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:51.9376747Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\01ed1739-c96e-4f0b-80a1-6179e2faa8e8\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:51.9381156Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:51.9397947Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:51.9398295Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:51.9398791Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:51.9398989Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:51.9521438Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:51.9522005Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7ec8722c-883d-4806-ae82-36acfe6b0dc5\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:51.9523432Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:51.9565599Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:51.9566074Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:51.9566638Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:51.9566843Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:51.9701148Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:51.9702139Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6ab94c05-2439-4155-9ec5-3653cf161b96\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:51.9703807Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:51.9712913Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:51.9713219Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:51.9713773Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:51.9713976Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:51.9841119Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:51.9841689Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\259d8270-893a-4837-86a4-58a394f36266\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:51.9843078Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:51.9852501Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:51.9852850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:51.9853414Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:51.9853630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:51.9959843Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:51.9960832Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\01dfa1be-3a96-42bb-8899-c6e63ca94ad5\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:51.9962391Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:51.9971712Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:51.9972026Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:51.9972591Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:51.9972811Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:52.0079992Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:52.0080517Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8fd2078b-96eb-4260-b2a6-9c4fbdf7dc04\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:52.0081848Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:52.0090104Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:52.0090445Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:52.0090938Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:52.0091135Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:52.0211921Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:52.0212597Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fc4a5978-fc95-4225-8f99-f44ef2df2832\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:52.0213970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:52.0247411Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:52.0247900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:52.0248539Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:52.0248767Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:52.0366186Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:52.0366841Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\eed88ea6-2400-4e79-a0ef-3ad41a7ae647\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:52.0368600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:52.0378297Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:52.0378706Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:52.0379270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:52.0379492Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:52.0388836Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Install .NET MAUI Workload","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:28:52.0552725Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:52.0553712Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\31cf66f6-f1c9-4c67-bb99-3120e911de54\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:52.0555239Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:52.0563453Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:52.0563739Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:52.0564232Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:52.0564408Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:52.0679483Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:52.0680047Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f4229616-bec3-47c1-8b06-7bd0e8f863d2\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:52.0681362Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:52.0689790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:52.0690128Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:52.0690611Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:52.0690794Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:52.2488248Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":".NET SDK:","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2488682Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" Version: 7.0.100","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2488822Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" Commit: e12b7af219","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2489127Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":"Runtime Environment:","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2490514Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" OS Name: Windows","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2490777Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" OS Version: 10.0.22000","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2515159Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" OS Platform: Windows","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2690618Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" RID: win10-x64","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2691170Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" Base Path: C:\\Program Files\\dotnet\\sdk\\7.0.100\\","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2707058Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":"Host:","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2707433Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" Version: 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2707576Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" Architecture: x64","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2707672Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" Commit: d099f075e4","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2707760Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":".NET SDKs installed:","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2707842Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" 3.1.424 [C:\\Program Files\\dotnet\\sdk]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2707945Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" 6.0.305 [C:\\Program Files\\dotnet\\sdk]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2708035Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" 7.0.100 [C:\\Program Files\\dotnet\\sdk]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2708158Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":".NET runtimes installed:","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2708263Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" Microsoft.AspNetCore.App 3.1.30 [C:\\Program Files\\dotnet\\shared\\Microsoft.AspNetCore.App]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2708368Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" Microsoft.AspNetCore.App 3.1.31 [C:\\Program Files\\dotnet\\shared\\Microsoft.AspNetCore.App]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2708460Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" Microsoft.AspNetCore.App 5.0.17 [C:\\Program Files\\dotnet\\shared\\Microsoft.AspNetCore.App]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2708547Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" Microsoft.AspNetCore.App 6.0.10 [C:\\Program Files\\dotnet\\shared\\Microsoft.AspNetCore.App]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2708633Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" Microsoft.AspNetCore.App 6.0.11 [C:\\Program Files\\dotnet\\shared\\Microsoft.AspNetCore.App]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2708728Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" Microsoft.AspNetCore.App 7.0.0 [C:\\Program Files\\dotnet\\shared\\Microsoft.AspNetCore.App]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2708816Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" Microsoft.NETCore.App 3.1.30 [C:\\Program Files\\dotnet\\shared\\Microsoft.NETCore.App]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2708905Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" Microsoft.NETCore.App 3.1.31 [C:\\Program Files\\dotnet\\shared\\Microsoft.NETCore.App]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2709297Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" Microsoft.NETCore.App 5.0.17 [C:\\Program Files\\dotnet\\shared\\Microsoft.NETCore.App]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2709413Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" Microsoft.NETCore.App 6.0.10 [C:\\Program Files\\dotnet\\shared\\Microsoft.NETCore.App]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2709501Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" Microsoft.NETCore.App 6.0.11 [C:\\Program Files\\dotnet\\shared\\Microsoft.NETCore.App]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2709603Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" Microsoft.NETCore.App 7.0.0 [C:\\Program Files\\dotnet\\shared\\Microsoft.NETCore.App]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2709691Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" Microsoft.WindowsDesktop.App 3.1.30 [C:\\Program Files\\dotnet\\shared\\Microsoft.WindowsDesktop.App]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2709789Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" Microsoft.WindowsDesktop.App 3.1.31 [C:\\Program Files\\dotnet\\shared\\Microsoft.WindowsDesktop.App]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2709887Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" Microsoft.WindowsDesktop.App 5.0.17 [C:\\Program Files\\dotnet\\shared\\Microsoft.WindowsDesktop.App]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2709993Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" Microsoft.WindowsDesktop.App 6.0.10 [C:\\Program Files\\dotnet\\shared\\Microsoft.WindowsDesktop.App]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2710094Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" Microsoft.WindowsDesktop.App 6.0.11 [C:\\Program Files\\dotnet\\shared\\Microsoft.WindowsDesktop.App]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2710183Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" Microsoft.WindowsDesktop.App 7.0.0 [C:\\Program Files\\dotnet\\shared\\Microsoft.WindowsDesktop.App]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2710281Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":"Other architectures found:","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2710368Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" arm64 [C:\\Program Files\\dotnet]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2710606Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" registered at [HKLM\\SOFTWARE\\dotnet\\Setup\\InstalledVersions\\arm64\\InstallLocation]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2710726Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" x86 [C:\\Program Files (x86)\\dotnet]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2710820Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" registered at [HKLM\\SOFTWARE\\dotnet\\Setup\\InstalledVersions\\x86\\InstallLocation]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2710910Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":"Environment variables:","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2710995Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" Not set","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2711087Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":"global.json file:","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2711172Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" Not found","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2711258Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":"Learn more:","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2711341Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" https://aka.ms/dotnet/info","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2711426Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":"Download .NET:","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:52.2711524Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" https://aka.ms/dotnet/download","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:53.1192026Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"Installed Workload Id Manifest Version Installation Source ","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:53.1215332Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"----------------------------------------------------------------------------------------------------------------------","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:53.1228276Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"ios 16.0.1478/7.0.100 SDK 7.0.100, VS 17.5.33103.201, VS 17.5.33114.351, VS 17.4.33110.190","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:53.1242536Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"maccatalyst 15.4.2372/7.0.100 SDK 7.0.100, VS 17.5.33103.201, VS 17.5.33114.351, VS 17.4.33110.190","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:53.1252915Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"maui 7.0.49/7.0.100 SDK 7.0.100 ","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:53.1264420Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"maui-ios 7.0.49/7.0.100 SDK 7.0.100, VS 17.5.33103.201, VS 17.5.33114.351, VS 17.4.33110.190","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:53.1274932Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"maui-windows 7.0.49/7.0.100 SDK 7.0.100, VS 17.5.33103.201, VS 17.5.33114.351, VS 17.4.33110.190","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:53.1289153Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"maui-android 7.0.49/7.0.100 VS 17.5.33103.201, VS 17.5.33114.351, VS 17.4.33110.190 ","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:53.1306671Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"android 33.0.4/7.0.100 VS 17.5.33103.201, VS 17.5.33114.351, VS 17.4.33110.190 ","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:53.1324562Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"maui-maccatalyst 7.0.49/7.0.100 VS 17.5.33103.201, VS 17.5.33114.351, VS 17.4.33110.190 ","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:53.1341209Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"wasm-tools-net6 7.0.0/7.0.100 VS 17.5.33103.201 ","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:53.1353238Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"runtimes-windows 7.0.0/7.0.100 VS 17.5.33103.201 ","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:53.1370383Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"wasm-tools 7.0.0/7.0.100 VS 17.5.33114.351 ","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:53.1383808Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"Use `dotnet workload search` to find additional workloads to install.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:28:53.1656536Z","@mt":".NET MAUI workloads installed: MauiAndroid, MauiiOS","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiWorkloadUpgradeStep"} +{"@t":"2022-11-15T22:28:53.1673638Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Install .NET MAUI Workload","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:28:53.1677022Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Clean up NuGet package references","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:28:53.1705014Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Clean up NuGet package references","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:28:53.1710384Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:28:53.1788045Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:28:53.1815967Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:28:53.1841878Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:28:53.1844112Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:28:53.1854656Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:28:53.1910729Z","@mt":"Marking package {PackageName} for removal based on package mapping configuration {PackageMapSet}","PackageName":"Xamarin.Forms","PackageMapSet":"Xamarin Legacy Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.PackageMapReferenceAnalyzer"} +{"@t":"2022-11-15T22:28:53.1977919Z","@mt":"Marking package {PackageName} for removal based on package mapping configuration {PackageMapSet}","PackageName":"Xamarin.Essentials","PackageMapSet":"Xamarin Legacy Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.PackageMapReferenceAnalyzer"} +{"@t":"2022-11-15T22:28:53.2050239Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:28:53.2052979Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Remove package 'Xamarin.Forms'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:28:53.2075344Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Remove package 'Xamarin.Forms'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:28:53.2076517Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:28:53.2096620Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Remove package 'Xamarin.Forms'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:28:53.2121926Z","@mt":"Removing outdated package reference: {PackageReference}","PackageReference":"Xamarin.Forms, Version=5.0.0.2083","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:28:53.2146605Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Remove package 'Xamarin.Forms'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:28:53.2322192Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.2323029Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\46b47a32-e6bf-447a-b3d4-ce036565504c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.2324846Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.2333259Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.2333622Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.2334126Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.2334320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.2452724Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.2453265Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\36ca29ba-9101-4515-856b-83eab1dcb47a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.2454603Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.2462417Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.2462722Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.2463248Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.2463446Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.2576443Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.2577186Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\73ba4579-ee74-4f19-a7c8-8eb446e9977f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.2578558Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.2587638Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.2587960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.2588512Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.2588717Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.2696975Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.2697499Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\11ff2204-3572-43d3-93c1-02032a6599fc\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.2698744Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.2706619Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.2706914Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.2707394Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.2707575Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.2816800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.2817522Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\19fbbdc8-1a72-48e3-a289-75f090252427\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.2818890Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.2827863Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.2828184Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.2828734Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.2828935Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.2956068Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.2956642Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6ded992e-f9d3-4d53-8806-1a55465b28a7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.2958017Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.2967218Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.2967533Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.2968101Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.2968299Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.3082573Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.3083360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0972b8ed-ac4b-4a08-a804-6df1cbde7c09\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.3085019Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.3095247Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.3096149Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.3096887Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.3097138Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.3217942Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.3218557Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\58b052dd-08ad-45a6-b00d-7d94ad2ebaaf\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.3220248Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.3230548Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.3230892Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.3231525Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.3231756Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:28:53.3239865Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Remove package 'Xamarin.Essentials'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:28:53.3267679Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Remove package 'Xamarin.Essentials'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:28:53.3268072Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:28:53.3270079Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Remove package 'Xamarin.Essentials'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:28:53.3290251Z","@mt":"Removing outdated package reference: {PackageReference}","PackageReference":"Xamarin.Essentials, Version=1.7.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:28:53.3302650Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Remove package 'Xamarin.Essentials'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:28:53.3319015Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:28:53.3340264Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:28:53.6886693Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets 'UAP,Version=v10.0.16299'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0213910Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0244818Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka PlantLady.PlantLady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0245319Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0245531Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka PlantLady.PlantLady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0245706Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka PlantLady.PlantLady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0245930Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka PlantLady.PlantLady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0246126Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka PlantLady.PlantLady:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0246282Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0246438Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka PlantLady.PlantLady:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0246585Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorAccent (aka PlantLady.PlantLady:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0246740Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka PlantLady.PlantLady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0246896Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka PlantLady.PlantLady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0247065Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka PlantLady.PlantLady:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0247235Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka PlantLady.PlantLady:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0247388Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0247543Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka PlantLady.PlantLady:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0247697Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka PlantLady.PlantLady:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0247843Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka PlantLady.PlantLady:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0247997Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0248164Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka PlantLady.PlantLady:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0248334Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0248483Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0248653Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0248809Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka PlantLady.PlantLady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0248954Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0249100Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka PlantLady.PlantLady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0249244Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka PlantLady.PlantLady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0249425Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka PlantLady.PlantLady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0249593Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka PlantLady.PlantLady:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0249738Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0249894Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka PlantLady.PlantLady:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0250036Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorAccent (aka PlantLady.PlantLady:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0250189Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka PlantLady.PlantLady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0250342Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka PlantLady.PlantLady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0250509Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka PlantLady.PlantLady:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0250676Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka PlantLady.PlantLady:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0250829Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0250974Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka PlantLady.PlantLady:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0251123Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka PlantLady.PlantLady:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0251268Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka PlantLady.PlantLady:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0251424Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0251616Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka PlantLady.PlantLady:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0251782Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0251933Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.0883744Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.1426646Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\Microsoft Visual Studio\\2022\\Preview\\MSBuild\\Xamarin\\Android\\Xamarin.Android.Legacy.targets: (234, 5): The reference assemblies for MonoAndroid,Version=v1.0 were not found. To resolve this, install the Developer Pack (SDK/Targeting Pack) for this framework version or retarget your application. You can download .NET Framework Developer Packs at https://aka.ms/msbuild/developerpacks","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.1430222Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.1820579Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets 'Xamarin.iOS,Version=v1.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.1825196Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:01.1892966Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:29:03.8627560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.8628349Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7bdc021f-e1d3-40a3-97f0-29f2096fc05c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.8629855Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.8638358Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.8638675Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.8639169Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.8639367Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.8767521Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.8768096Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e82fe93d-6bc4-4e25-b9f5-08382d92d446\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.8769307Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.8778380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.8778678Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.8779207Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.8779435Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.8940489Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.8941331Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6e6de057-2e8d-4ec4-a2e9-d7330c9f4001\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.8942769Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.8988172Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.8988750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.8989329Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.8989539Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.9140140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.9140838Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6082ec53-4fb3-4cda-90af-8c65e618d3b7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.9142262Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.9152601Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.9152939Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.9153597Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.9153863Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.9289797Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.9290586Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ad5d6ae1-1f1e-462e-a2c5-5c2ae6522b7b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.9291987Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.9302388Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.9302730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.9303364Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.9303587Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.9432910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.9433502Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\cd7748f1-472a-4193-83bb-e2f97f4c139b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.9434800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.9443691Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.9444013Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.9444583Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.9444789Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.9577540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.9578312Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\bcca8e6e-a755-4031-a1ce-39d4fdf09752\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.9580173Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.9590310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.9590647Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.9591271Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.9591486Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.9754835Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.9755609Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\34d51cdc-7ce3-4a9d-b694-5b09254a6067\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.9757006Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.9766991Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.9767348Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.9767904Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.9768128Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:03.9777724Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:03.9803956Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:29:03.9828975Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:29:03.9847295Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:03.9848626Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:03.9864074Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:29:04.0363315Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3/registration5-gz-semver2/microsoft.dotnet.upgradeassistant.extensions.default.analyzers/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"} +{"@t":"2022-11-15T22:29:04.3858952Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3/registration5-gz-semver2/microsoft.dotnet.upgradeassistant.extensions.default.analyzers/index.json 349ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"} +{"@t":"2022-11-15T22:29:04.5189015Z","@mt":"Reference to .NET Upgrade Assistant analyzer package ({AnalyzerPackageName}, version {AnalyzerPackageVersion}) needs to be added","AnalyzerPackageName":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers","AnalyzerPackageVersion":"0.4.355802","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.UpgradeAssistantReferenceAnalyzer"} +{"@t":"2022-11-15T22:29:04.5220499Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:04.5220933Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:04.5231352Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:04.5231665Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:04.5244623Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:29:04.5276174Z","@mt":"Adding package reference: {PackageReference}","PackageReference":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.4.355802","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:29:04.5297846Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:29:04.5309325Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:29:04.5323411Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:29:04.9157955Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets 'UAP,Version=v10.0.16299'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2110691Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2111363Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka PlantLady.PlantLady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2111561Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2111713Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka PlantLady.PlantLady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2111874Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka PlantLady.PlantLady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2112065Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka PlantLady.PlantLady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2112258Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka PlantLady.PlantLady:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2112434Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2112577Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka PlantLady.PlantLady:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2112721Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorAccent (aka PlantLady.PlantLady:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2112863Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka PlantLady.PlantLady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2113006Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka PlantLady.PlantLady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2113170Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka PlantLady.PlantLady:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2113322Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka PlantLady.PlantLady:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2113470Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2113617Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka PlantLady.PlantLady:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2113754Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka PlantLady.PlantLady:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2113895Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka PlantLady.PlantLady:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2114031Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2114175Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka PlantLady.PlantLady:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2114777Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2114977Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2115136Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2115276Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka PlantLady.PlantLady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2115416Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2115548Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka PlantLady.PlantLady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2115690Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka PlantLady.PlantLady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2115850Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka PlantLady.PlantLady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2116016Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka PlantLady.PlantLady:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2116162Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2116318Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka PlantLady.PlantLady:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2116464Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorAccent (aka PlantLady.PlantLady:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2116603Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka PlantLady.PlantLady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2116740Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka PlantLady.PlantLady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2116911Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka PlantLady.PlantLady:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2117065Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka PlantLady.PlantLady:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2117204Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2117346Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka PlantLady.PlantLady:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2117481Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka PlantLady.PlantLady:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2117624Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka PlantLady.PlantLady:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2117765Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2117916Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka PlantLady.PlantLady:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2118080Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2118217Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.2765932Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.3386432Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\Microsoft Visual Studio\\2022\\Preview\\MSBuild\\Xamarin\\Android\\Xamarin.Android.Legacy.targets: (234, 5): The reference assemblies for MonoAndroid,Version=v1.0 were not found. To resolve this, install the Developer Pack (SDK/Targeting Pack) for this framework version or retarget your application. You can download .NET Framework Developer Packs at https://aka.ms/msbuild/developerpacks","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.3390820Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.3872349Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets 'Xamarin.iOS,Version=v1.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.3875663Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:12.3940461Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:29:15.2793299Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.2794470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\369eab78-460f-4e3e-a615-b4282dea82a6\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.2796459Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.2835688Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.2836109Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.2836662Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.2837128Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.2954184Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.2954772Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e2c0b2b5-154e-4a0a-9959-d98209d4e451\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.2956520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.2965434Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.2965767Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.2966316Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.2966586Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.3098598Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.3099344Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fe6d65d1-1d7b-4c7d-8806-4fc681f596b1\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.3100909Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.3111712Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.3112075Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.3112631Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.3112854Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.3265547Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.3266237Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9367dfca-ddd7-43cc-bbd2-a1bd1cee291c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.3268000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.3279459Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.3279859Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.3280509Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.3280872Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.3452920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.3453861Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\caeccf4a-57f1-44c7-ae78-98e6a5d24895\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.3456843Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.3467105Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.3467496Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.3468121Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.3468382Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.3613057Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.3613754Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\013485a9-d780-4efa-8056-4777fcefeeab\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.3615394Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.3652294Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.3652875Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.3653611Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.3653883Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.3781108Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.3781974Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b28e7621-c751-4f47-9d01-dd7636fd9de1\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.3783759Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.3795060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.3795450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.3796144Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.3796404Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.3920119Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.3920780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1cf4e0d3-ac84-4c4e-b80f-449021f8441d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.3922325Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.3933731Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.3934126Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.3934841Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.3935113Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.3947613Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:15.3975037Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:29:15.3993976Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:29:15.4009512Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:15.4011090Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:15.4029885Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:29:15.4050213Z","@mt":"{Project} is not a VB class library","@l":"Debug","Project":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.VisualBasic.MyDotAnalyzer"} +{"@t":"2022-11-15T22:29:15.4050502Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:29:15.4077852Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:15.4079266Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:15.4099040Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:29:15.4228535Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.4229788Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0448c54e-d4e4-4ee7-b2ea-ff9ea9d60f4b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.4231635Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.4242678Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.4243104Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.4243790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.4244034Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.4370186Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.4370877Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\91c3c516-1965-4c60-8c42-e81d7427d26c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.4372524Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.4383520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.4383902Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.4384943Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.4385214Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.4434087Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:29:15.4458832Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:15.4460902Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:15.4476348Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:29:15.4595012Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.4595873Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\87846e32-6b54-4d89-9357-444d4112737b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.4597427Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.4605947Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.4606273Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.4606807Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.4606992Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.4709819Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.4710326Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\73ee6ed6-c4df-4db5-89f3-c8ee73eff097\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.4711546Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.4719418Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.4719688Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.4720146Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.4720318Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.4728118Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:29:15.4747047Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:15.4749099Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:15.4758404Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:29:15.4877612Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.4878640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\131f0264-3a01-48da-a9ae-bd17093b2f26\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.4880164Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.4889061Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.4889353Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.4889903Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.4890100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.4919471Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:29:15.4944409Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Clean up NuGet package references","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:29:15.4967661Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Clean up NuGet package references","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:29:15.4985431Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:15.4988563Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Update TFM","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:15.5111876Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.5112887Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f6d1c829-9683-4b6e-b893-0de7399d9984\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.5114496Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.5123408Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.5123724Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.5124254Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.5124495Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.5233954Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.5234436Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1adb3060-fe80-4261-86a7-50458c766fee\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.5235578Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.5259845Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.5260321Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.5260842Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.5261051Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.5267683Z","@mt":"Skip minimum dependency check because .NET MAUI support multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:29:15.5291498Z","@mt":"Could not find an output type","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:29:15.5291960Z","@mt":"Could not find an output type","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:29:15.5292455Z","@mt":"Project {Name} is of type .NET MAUI Target:Android, migration to .NET MAUI recommends net7.0-android.","Name":"PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:29:15.5309239Z","@mt":"Project {Name} is of type .NET MAUI Target:iOS, migration to .NET MAUI recommends net7.0-ios.","Name":"PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:29:15.5329692Z","@mt":"Could not merge incoming TFM update from {Current} to {Next}","@l":"Warning","Current":"net7.0-android","Next":"net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.TargetFrameworkSelector"} +{"@t":"2022-11-15T22:29:15.5347992Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Update TFM","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:15.5349361Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Update NuGet Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:15.5359629Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Update NuGet Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:15.5360247Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:15.5373329Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:29:15.5374816Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:29:15.5383056Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:15.5383290Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:15.5391859Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:29:15.5393217Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:29:15.5400677Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:15.5401014Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:15.5412592Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:29:15.5436452Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.4.355802","PackagePath":"C:\\Users\\Sweeky Satpathy\\.nuget\\packages\\Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers\\0.4.355802\\Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers.0.4.355802.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"} +{"@t":"2022-11-15T22:29:15.5534443Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers.0.4.355802","TargetFrameworks":["Any,Version=v0.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"} +{"@t":"2022-11-15T22:29:15.5543402Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.4.355802","TargetFramework":["net7.0-android","net7.0-ios"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"} +{"@t":"2022-11-15T22:29:15.5543713Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:29:15.5569772Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:15.5570085Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:15.5585612Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:29:15.5587833Z","@mt":"Reference to .NET Upgrade Assistant analyzer package ({AnalyzerPackageName}) already exists","@l":"Debug","AnalyzerPackageName":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.UpgradeAssistantReferenceAnalyzer"} +{"@t":"2022-11-15T22:29:15.5588061Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:29:15.5598525Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:15.5598752Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:15.5611524Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:29:15.5613079Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:29:15.5622265Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:15.5622499Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:15.5631127Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:29:15.5632222Z","@mt":"{Project} is not a VB class library","@l":"Debug","Project":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.VisualBasic.MyDotAnalyzer"} +{"@t":"2022-11-15T22:29:15.5632420Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:29:15.5643068Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:15.5643315Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:15.5652398Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:29:15.5754251Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.5754932Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4ed32952-fde7-4c9c-b1a5-8dd2c493d0b0\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.5756400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.5764682Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.5765013Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.5765498Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.5765689Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.5874908Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.5875495Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d6d5c45d-653f-4fee-973d-95357c7c6e9d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.5876913Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.5885898Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.5886203Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.5886748Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.5886949Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.5893602Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:29:15.5914914Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:15.5915236Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:15.5932197Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:29:15.6018701Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.6019873Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\48d4183f-5b6d-4aca-8d1e-df45b82e83eb\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.6021277Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.6028660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.6028943Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.6029385Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.6029555Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.6124069Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.6124567Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\04e83043-7902-4426-a3d2-07051b2cc28f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.6125779Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.6133190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.6133460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.6133887Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.6134057Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.6139578Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:29:15.6159132Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:15.6159502Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:15.6170469Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:29:15.6295802Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.6296521Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\82f07018-1dd5-4ddf-8970-90146d81c4c6\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.6297940Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.6306257Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.6306535Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.6307030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.6307216Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.6314415Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:29:15.6337481Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Update NuGet Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:29:15.6355224Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Update NuGet Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:29:15.6368546Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:15.6505872Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.6506905Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\facb381f-654e-448b-b3a0-c8e97fafd00b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.6508440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.6516726Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.6517058Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.6517552Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.6517742Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.6658618Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.6659390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6023ea62-30b0-4dce-8c6c-801404afabe3\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.6661285Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.6671729Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.6672077Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.6672697Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.6672922Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.6683986Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Add Project Properties for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:15.6853451Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.6854571Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ffcd33c2-1b50-427c-9ffb-ed09079b24fb\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.6856311Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.6866472Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.6866860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.6867492Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.6867713Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.7008208Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.7008888Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4f2281d4-f30c-4d1f-8923-49cdf1ccf4ca\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.7010462Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.7020409Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.7020770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.7041327Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.7042090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.7054182Z","@mt":".NET MAUI Project Properties need to be added.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep"} +{"@t":"2022-11-15T22:29:15.7078096Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Add Project Properties for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:15.7078452Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:15.7090486Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Add Project Properties for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep"} +{"@t":"2022-11-15T22:29:15.7222580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.7223566Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\cfe58a77-899f-4ff3-a2fc-3cc189f4cbb5\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.7225076Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.7233406Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.7233689Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.7234188Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.7234361Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.7347073Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.7347661Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4511a690-8834-4fed-b7b5-8dea1dd0d8de\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.7349343Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.7357622Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.7357925Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.7358408Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.7358604Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:15.7396177Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"DebugType","PropertyValue":"portable","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:29:15.7417074Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"DebugSymbols","PropertyValue":"true","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:29:15.7437737Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"ProduceReferenceAssembly","PropertyValue":"true","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:29:15.7460545Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:29:16.1973885Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets 'UAP,Version=v10.0.16299'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5844843Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5845482Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka PlantLady.PlantLady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5845671Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5845813Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka PlantLady.PlantLady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5845958Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka PlantLady.PlantLady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5846153Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka PlantLady.PlantLady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5846329Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka PlantLady.PlantLady:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5846473Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5846607Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka PlantLady.PlantLady:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5846744Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorAccent (aka PlantLady.PlantLady:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5846879Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka PlantLady.PlantLady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5847012Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka PlantLady.PlantLady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5847165Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka PlantLady.PlantLady:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5847308Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka PlantLady.PlantLady:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5847448Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5847581Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka PlantLady.PlantLady:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5847711Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka PlantLady.PlantLady:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5847846Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka PlantLady.PlantLady:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5847976Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5848137Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka PlantLady.PlantLady:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5848296Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5848433Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5848572Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5848699Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka PlantLady.PlantLady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5848836Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5848971Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka PlantLady.PlantLady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5849099Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka PlantLady.PlantLady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5849259Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka PlantLady.PlantLady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5849401Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka PlantLady.PlantLady:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5849541Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5849674Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka PlantLady.PlantLady:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5849802Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorAccent (aka PlantLady.PlantLady:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5849934Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka PlantLady.PlantLady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5850062Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka PlantLady.PlantLady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5850218Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka PlantLady.PlantLady:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5850367Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka PlantLady.PlantLady:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5850501Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5850635Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka PlantLady.PlantLady:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5850764Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka PlantLady.PlantLady:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5850902Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka PlantLady.PlantLady:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5851037Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5851185Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka PlantLady.PlantLady:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5851335Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.5851465Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.6403540Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.6973688Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\Microsoft Visual Studio\\2022\\Preview\\MSBuild\\Xamarin\\Android\\Xamarin.Android.Legacy.targets: (234, 5): The reference assemblies for MonoAndroid,Version=v1.0 were not found. To resolve this, install the Developer Pack (SDK/Targeting Pack) for this framework version or retarget your application. You can download .NET Framework Developer Packs at https://aka.ms/msbuild/developerpacks","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.6978055Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.7461829Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets 'Xamarin.iOS,Version=v1.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.7466076Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:23.7523045Z","@mt":"Added .NET MAUI Project Properties successfully","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep"} +{"@t":"2022-11-15T22:29:23.7550868Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Add Project Properties for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep"} +{"@t":"2022-11-15T22:29:26.4444676Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.4445711Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\12721c2c-3a19-42d7-ac4f-4561bcda9446\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.4447399Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.4455539Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.4455811Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.4456338Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.4457034Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.4556314Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.4556778Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\89c42c28-2b45-4e00-ab88-e24834dade5a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.4558013Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.4566051Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.4566314Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.4566843Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.4567052Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.4666724Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.4667408Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\48a16349-8a0c-4b95-bcaf-91bc2750767c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.4668720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.4675920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.4676176Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.4676599Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.4676768Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.4776262Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.4776762Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e608e2d2-3309-45fa-aba7-65fb9636dcc9\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.4777978Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.4785075Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.4785359Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.4785825Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.4786020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.4887423Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.4887973Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3d7edc89-c667-4f32-bb0e-a6539f1e7699\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.4889103Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.4917111Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.4917757Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.4919054Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.4919406Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5027460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5027986Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\207fa9c0-0de1-4e03-aafb-c7ea61780bc7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5029271Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5037377Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5037639Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5038122Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5038334Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5143703Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5144416Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1aa0414a-f231-4ed4-b7e2-5ce2ccc6bcbd\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5145696Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5153733Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5154002Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5154481Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5154660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5259316Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5259834Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\aa735f04-3667-4bc0-a221-22bd9bea22d1\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5261086Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5269520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5269842Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5270329Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5271270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5387171Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5387961Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2dcaa288-8dea-44be-9364-7534aeefc6a2\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5389573Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5399915Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5400262Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5400877Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5401106Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5532820Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5533669Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e4c20c32-faec-4c4a-aad7-9ba43da9bda0\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5535623Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5588489Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5589101Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5589833Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5590091Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5742061Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5743085Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\04910d10-194f-4ff0-a374-05a3551900a8\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5745130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5757078Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5757491Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5758194Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5758462Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5920501Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5921254Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9759ece7-496b-4e18-96da-201bc2a33398\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5923010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5934824Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5935232Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5935947Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5936231Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.5947943Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Add template files","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:26.6157943Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.6158917Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9a5b98b1-d5e0-4aec-b54d-bd2a86ea8acd\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.6160378Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.6168574Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.6168851Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.6169361Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.6169534Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.6276699Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.6277265Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d7b6701e-443e-44ba-81c1-0307f4b09821\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.6278613Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.6286867Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.6287147Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.6287646Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.6287830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:26.6330779Z","@mt":"{FilesNeededCount} expected template items needed","FilesNeededCount":1,"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:29:26.6351476Z","@mt":"Needed items: {NeededFiles}","@l":"Debug","NeededFiles":"MauiProgram.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:29:26.6352355Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Add template files","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:26.6352645Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:26.6386381Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Add template files","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:29:26.6465493Z","@mt":"Resolved project property {PropertyKey} to {PropertyValue}","@l":"Debug","PropertyKey":"RootNamespace","PropertyValue":"PlantLady","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:29:26.6589785Z","@mt":"Added template file MauiProgram.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:29:27.0153071Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets 'UAP,Version=v10.0.16299'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2934348Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2934988Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka PlantLady.PlantLady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2935179Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2935325Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka PlantLady.PlantLady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2935514Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka PlantLady.PlantLady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2935667Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka PlantLady.PlantLady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2935806Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka PlantLady.PlantLady:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2935948Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2936083Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka PlantLady.PlantLady:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2936225Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorAccent (aka PlantLady.PlantLady:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2936364Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka PlantLady.PlantLady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2936515Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka PlantLady.PlantLady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2936657Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka PlantLady.PlantLady:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2936789Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka PlantLady.PlantLady:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2936930Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2937067Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka PlantLady.PlantLady:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2937198Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka PlantLady.PlantLady:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2937336Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka PlantLady.PlantLady:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2937482Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2937625Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka PlantLady.PlantLady:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2937767Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2937900Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2938039Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2938171Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka PlantLady.PlantLady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2938308Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2938463Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka PlantLady.PlantLady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2938604Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka PlantLady.PlantLady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2938742Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka PlantLady.PlantLady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2938874Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka PlantLady.PlantLady:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2963725Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2964266Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka PlantLady.PlantLady:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2964456Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorAccent (aka PlantLady.PlantLady:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2964679Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka PlantLady.PlantLady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2964853Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka PlantLady.PlantLady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2965001Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka PlantLady.PlantLady:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2965136Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka PlantLady.PlantLady:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2965277Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2965414Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka PlantLady.PlantLady:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2965549Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka PlantLady.PlantLady:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2965711Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka PlantLady.PlantLady:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2965861Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2966010Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka PlantLady.PlantLady:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2966156Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.2966294Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.3491350Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.4038464Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\Microsoft Visual Studio\\2022\\Preview\\MSBuild\\Xamarin\\Android\\Xamarin.Android.Legacy.targets: (234, 5): The reference assemblies for MonoAndroid,Version=v1.0 were not found. To resolve this, install the Developer Pack (SDK/Targeting Pack) for this framework version or retarget your application. You can download .NET Framework Developer Packs at https://aka.ms/msbuild/developerpacks","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.4041817Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.4523423Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets 'Xamarin.iOS,Version=v1.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:34.4526697Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:36.9781062Z","@mt":"Added MauiProgram.cs to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:29:36.9781699Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:29:37.3275573Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets 'UAP,Version=v10.0.16299'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4494898Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.DefaultItems.Shared.targets: (190, 5): Duplicate 'Compile' items were included. The .NET SDK includes 'Compile' items from your project directory by default. You can either remove these items from your project file, or set the 'EnableDefaultCompileItems' property to 'false' if you want to explicitly include them in your project file. For more information, see https://aka.ms/sdkimplicititems. The duplicate items were: 'MauiProgram.cs'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4495534Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4495719Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka PlantLady.PlantLady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4495931Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4496095Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka PlantLady.PlantLady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4496244Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka PlantLady.PlantLady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4496387Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka PlantLady.PlantLady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4496525Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka PlantLady.PlantLady:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4496668Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4496804Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka PlantLady.PlantLady:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4496965Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorAccent (aka PlantLady.PlantLady:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4497120Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka PlantLady.PlantLady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4497258Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka PlantLady.PlantLady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4497396Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka PlantLady.PlantLady:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4497530Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka PlantLady.PlantLady:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4497671Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4497817Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka PlantLady.PlantLady:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4497971Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka PlantLady.PlantLady:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4498125Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka PlantLady.PlantLady:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4498262Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4498405Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka PlantLady.PlantLady:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4498548Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4498685Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4498827Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.DefaultItems.Shared.targets: (190, 5): Duplicate 'Compile' items were included. The .NET SDK includes 'Compile' items from your project directory by default. You can either remove these items from your project file, or set the 'EnableDefaultCompileItems' property to 'false' if you want to explicitly include them in your project file. For more information, see https://aka.ms/sdkimplicititems. The duplicate items were: 'MauiProgram.cs'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4499000Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.DefaultItems.Shared.targets: (190, 5): Duplicate 'Compile' items were included. The .NET SDK includes 'Compile' items from your project directory by default. You can either remove these items from your project file, or set the 'EnableDefaultCompileItems' property to 'false' if you want to explicitly include them in your project file. For more information, see https://aka.ms/sdkimplicititems. The duplicate items were: 'MauiProgram.cs'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4499156Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4499300Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka PlantLady.PlantLady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4499438Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4499572Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka PlantLady.PlantLady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4499708Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka PlantLady.PlantLady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4499843Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka PlantLady.PlantLady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4500002Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka PlantLady.PlantLady:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4500155Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4500294Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka PlantLady.PlantLady:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4500432Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorAccent (aka PlantLady.PlantLady:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4500562Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka PlantLady.PlantLady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4500701Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka PlantLady.PlantLady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4500839Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka PlantLady.PlantLady:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4501535Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka PlantLady.PlantLady:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4501733Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4501874Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka PlantLady.PlantLady:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4502015Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka PlantLady.PlantLady:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4502177Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka PlantLady.PlantLady:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4502314Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4502480Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka PlantLady.PlantLady:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4502639Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4502795Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.4502939Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Sdks\\Microsoft.NET.Sdk\\targets\\Microsoft.NET.Sdk.DefaultItems.Shared.targets: (190, 5): Duplicate 'Compile' items were included. The .NET SDK includes 'Compile' items from your project directory by default. You can either remove these items from your project file, or set the 'EnableDefaultCompileItems' property to 'false' if you want to explicitly include them in your project file. For more information, see https://aka.ms/sdkimplicititems. The duplicate items were: 'MauiProgram.cs'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.5053994Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.5575368Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\Microsoft Visual Studio\\2022\\Preview\\MSBuild\\Xamarin\\Android\\Xamarin.Android.Legacy.targets: (234, 5): The reference assemblies for MonoAndroid,Version=v1.0 were not found. To resolve this, install the Developer Pack (SDK/Targeting Pack) for this framework version or retarget your application. You can download .NET Framework Developer Packs at https://aka.ms/msbuild/developerpacks","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.5578851Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.5968050Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets 'Xamarin.iOS,Version=v1.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.5972482Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:44.6022638Z","@mt":"{ItemCount} template items added","ItemCount":1,"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:29:44.6043716Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Add template files","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:29:47.1500180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.1501075Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6735e14b-87f6-4318-8c65-e4b5dd26c94a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.1502460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.1510351Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.1510646Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.1511119Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.1511308Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.1636145Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.1636771Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\52ce8a95-fcf7-4022-a455-c9b04bcbbad5\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.1638262Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.1679308Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.1679804Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.1680406Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.1680616Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.1812455Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.1813130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e7b2ced5-a18e-4235-a8c2-63bd88effe17\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.1814761Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.1823655Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.1823995Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.1824542Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.1824739Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.1925820Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.1926335Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4f3ab90c-82ed-4dba-a45f-c830308fa01b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.1927624Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.1936420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.1936753Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.1937328Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.1937534Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2044206Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2044815Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b997f49f-d0ff-4cc7-a3aa-82ee5c4ea6d0\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2045969Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2054767Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2055061Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2055606Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2055807Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2157026Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2157531Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e5b060fa-6ea2-46ae-a699-a1f2843089e1\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2159093Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2166723Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2167014Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2167862Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2168116Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2299373Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2300418Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4309b915-8bca-4705-b7cb-4e592b909b28\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2302295Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2336169Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2336728Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2337380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2337645Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2459074Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2459728Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a53186ad-3c04-4655-b139-abc660f52300\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2461347Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2471405Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2471753Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2472427Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2472701Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2594420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2595235Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\86ad9a61-fc02-4862-ad21-9aae46d1e9af\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2596716Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2605641Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2605972Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2606515Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2606733Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2721160Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2721769Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\39bb01ea-6201-4707-acfb-b41135b64d2d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2723231Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2733176Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2733521Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2734165Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2734433Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2870259Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2871088Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8d3ed5c0-442b-4ecb-b0d0-59ebd641fe03\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2872640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2882568Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2882898Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2883535Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.2883767Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.3066890Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.3067634Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\52adf85b-1742-451a-a8c1-cce93583a73f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.3069250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.3079195Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.3079533Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.3080151Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.3080420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.3219496Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.3220395Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1d1c6175-4700-4c02-8f7d-07874e85a933\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.3221905Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.3231852Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.3232194Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.3232811Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.3233034Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.3373888Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.3374691Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2225a309-6437-4add-8217-31795d9ee18a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.3376372Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.3387901Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.3388294Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.3388999Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.3389263Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.3524914Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.3525839Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\af37151c-f4f9-4487-8621-0783a3d48c91\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.3527502Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.3538879Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.3539274Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.3539969Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.3540214Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.3677944Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.3678683Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ea5e2edd-5bdb-46f2-b9ab-d88f1dcc831f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.3680329Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.3690412Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.3690792Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.3691413Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.3691659Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:47.3725302Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Update XAML Namespaces","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:47.3822843Z","@mt":".NET MAUI project has XAML files that may need to be updated","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.XamlNamespaceUpgradeStep"} +{"@t":"2022-11-15T22:29:47.3851721Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Update XAML Namespaces","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:47.3852214Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.XamlNamespaceUpgradeStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:47.3863920Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Update XAML Namespaces","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.XamlNamespaceUpgradeStep"} +{"@t":"2022-11-15T22:29:47.4704726Z","@mt":"Source successfully updated","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:47.4718074Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:29:47.8535543Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets 'UAP,Version=v10.0.16299'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9458992Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9459637Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka PlantLady.PlantLady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9459847Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9460002Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka PlantLady.PlantLady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9460196Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka PlantLady.PlantLady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9460386Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka PlantLady.PlantLady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9460537Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka PlantLady.PlantLady:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9460689Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9460830Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka PlantLady.PlantLady:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9460978Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorAccent (aka PlantLady.PlantLady:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9461124Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka PlantLady.PlantLady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9461282Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka PlantLady.PlantLady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9461444Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka PlantLady.PlantLady:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9461587Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka PlantLady.PlantLady:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9461737Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9461884Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka PlantLady.PlantLady:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9462023Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka PlantLady.PlantLady:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9462167Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka PlantLady.PlantLady:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9462323Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9462484Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka PlantLady.PlantLady:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9462636Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9462777Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9462931Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9463071Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka PlantLady.PlantLady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9463217Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9463362Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka PlantLady.PlantLady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9463516Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka PlantLady.PlantLady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9463673Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka PlantLady.PlantLady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9463815Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka PlantLady.PlantLady:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9463960Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9464103Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka PlantLady.PlantLady:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9464240Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorAccent (aka PlantLady.PlantLady:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9464385Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka PlantLady.PlantLady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9464539Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka PlantLady.PlantLady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9464698Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka PlantLady.PlantLady:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9464848Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka PlantLady.PlantLady:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9464987Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9465131Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka PlantLady.PlantLady:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9465269Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka PlantLady.PlantLady:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9465416Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka PlantLady.PlantLady:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9466201Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9466401Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka PlantLady.PlantLady:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9466565Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:54.9466703Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:55.0008296Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:55.0521950Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\Microsoft Visual Studio\\2022\\Preview\\MSBuild\\Xamarin\\Android\\Xamarin.Android.Legacy.targets: (234, 5): The reference assemblies for MonoAndroid,Version=v1.0 were not found. To resolve this, install the Developer Pack (SDK/Targeting Pack) for this framework version or retarget your application. You can download .NET Framework Developer Packs at https://aka.ms/msbuild/developerpacks","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:55.0525163Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:55.0954580Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets 'Xamarin.iOS,Version=v1.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:55.0957651Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:29:55.1003042Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Update XAML Namespaces","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.XamlNamespaceUpgradeStep"} +{"@t":"2022-11-15T22:29:57.5241651Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5242380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\86898f4d-1d76-4f53-9c91-2e29313c5528\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5244041Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5251745Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5252025Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5252470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5252641Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5341314Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5341811Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\925437cd-cd08-480e-b21a-d4e1ecaecf47\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5343005Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5381118Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5381576Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5382088Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5382266Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5475384Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5475912Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\194410ed-798e-4716-907e-ef318660a698\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5477364Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5485426Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5485701Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5486183Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5486360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5580530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5581167Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6ff3616d-40a0-4ad5-93bd-e529ce0b892e\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5582627Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5590094Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5590418Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5590888Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5591060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5684184Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5684690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e4b1d580-3463-4bd2-9b78-4ec54b285b22\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5686000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5694098Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5694373Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5694863Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5695048Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5784577Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5785101Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6e3d324f-1f01-435c-ab18-4f2a0c01fb92\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5786402Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5793449Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5793747Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5794202Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5794376Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5888735Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5889288Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\06d49f35-fe52-4eb2-b447-abb73e21266d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5890720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5916790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5917241Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5917685Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.5917848Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6023154Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6023676Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5b377e0c-ba88-4931-91b2-477597c0dbbe\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6025135Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6033372Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6033651Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6034200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6034405Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6158952Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6159622Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c0a5c8fd-a98b-408c-be53-4b4dc33d0226\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6161463Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6168672Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6168950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6169386Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6169553Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6278666Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6279215Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7ca677ab-e624-4caf-84a1-cfb355ddfbd3\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6280571Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6288694Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6288962Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6289496Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6289702Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6402707Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6403316Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\137c4f15-fa37-4fbf-8ffe-bfd35c45264d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6404781Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6411910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6412175Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6412602Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6412773Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6512009Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6512545Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ee87875c-826b-48e1-bc61-a61a3182213b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6513918Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6547400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6547838Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6548287Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6548501Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6649871Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6650449Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0ccf1a0f-7756-4d10-a3a6-b3497940c239\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6652060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6659401Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6659678Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6660118Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6660284Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6754615Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6755239Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\23765fd8-d527-4483-bb49-e667d3abc289\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6756953Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6764203Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6764480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6764912Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6765127Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6860475Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6861046Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\96bdc73d-bc3d-49eb-bc1d-99e8626902be\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6862238Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6870167Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6870442Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6870940Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6871119Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6969339Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6969926Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4d550c53-0c8a-4833-8cda-94c62109bcab\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6971307Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6979324Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6979598Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6980117Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6980304Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.6988772Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Update WCF service to CoreWCF (Preview)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:57.7028386Z","@mt":"Can not find .cs file with Main() method. The project is not applicable for automated WCF update. No more work needs to be done and this step is complete.","@l":"Warning","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.WCFUpdater.WCFUpdateStep"} +{"@t":"2022-11-15T22:29:57.7040781Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Update WCF service to CoreWCF (Preview)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:57.7194065Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7194741Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3924cfe0-52fb-47b7-af52-25695651a7f0\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7196365Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7204685Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7204970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7205461Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7205639Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7312621Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7313306Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\680f549a-c3db-4c85-a913-67b0e45d1206\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7314754Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7322062Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7322334Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7322807Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7322994Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7429198Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7429809Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\14e9d098-b75b-41d2-b93b-6dead15d0ee3\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7431223Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7438995Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7439277Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7439713Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7439874Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7538754Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7539284Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f95c6ddb-1b1b-464a-9925-5c0503aa9356\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7540624Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7548887Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7549175Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7549663Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7549858Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7650812Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7651351Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ab24ca29-7ec2-4b01-8093-6a6bfa583560\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7652697Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7660092Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7660384Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7660827Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7661010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7778952Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7779623Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\50e89fdf-e50e-46d3-8988-c282d338b49c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7781128Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7789323Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7789610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7790110Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7790329Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7892264Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7892862Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\91526fe7-b8b9-413f-8f5d-fe799bc0f38f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7894064Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7901115Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7901380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7901808Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.7901984Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8000996Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8001572Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4ed20847-44a0-404b-90e3-9726fed65069\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8003012Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8011272Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8011567Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8012073Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8012296Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8110103Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8110643Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fe59803c-b70d-41b3-9097-3be7262e9a9d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8111997Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8119232Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8119506Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8119943Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8120119Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8210008Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8210558Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ea5c9043-b27a-4a6a-8ed1-cb8a9eeeaa30\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8211901Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8234870Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8235312Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8235837Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8236037Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8321196Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8321794Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\296425a8-2b4e-4d54-aaf5-5cd35169e3e3\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8323265Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8331587Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8331868Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8332363Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8332538Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8412369Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8412922Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\80ced452-b4f0-4990-b767-4094cebc2ebd\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8414356Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8421510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8421792Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8422225Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8422389Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8508882Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8509435Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f218e2e7-9e15-456f-a2e2-a0a213f32769\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8510777Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8518878Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8519164Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8519661Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8519846Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8605288Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8605940Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2d8ae5b3-3529-4149-a2dc-4181a0f5d645\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8607397Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8614833Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8615114Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8615591Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.8615772Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:57.9932717Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers.Common, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_Default6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:29:58.0561253Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.0561966Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\bc953881-f75d-437a-adbf-bae726125dc3\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.0564200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.0581388Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.0581806Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.0582972Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.0583342Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.0677105Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.0677640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\90234b94-da8f-40f7-9a40-0bbaf31c6d88\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.0678944Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.0686016Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.0686277Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.0686700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.0686869Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.0734621Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Update source code","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:58.0761899Z","@mt":"Opening project {ProjectPath}","@l":"Debug","ProjectPath":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:29:58.0789226Z","@mt":"Running analyzers on {ProjectName}","ProjectName":"PlantLady(net7.0-android)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.RoslynDiagnosticProvider"} +{"@t":"2022-11-15T22:29:58.0915959Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.0916574Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f3f2b07f-64b2-46b1-b1b1-cb36a2248103\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.0918004Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.0927154Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.0927465Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.0927914Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.0928090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1027877Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1028493Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ec9c5a9c-0863-4454-8016-d82bc564da2c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1030008Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1038387Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1038672Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1039251Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1039484Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1149376Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1149975Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5125a3ac-264a-4e95-91a8-42a1be92294b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1151558Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1173916Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1174364Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1174814Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1174987Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1265794Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1266361Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\65b94d44-42ed-469e-8377-303b96ed82bf\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1267984Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1275267Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1275540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1276034Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1276227Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1370307Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1370836Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ee637b6c-6eb7-4a1c-a15d-5e70f2345392\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1372090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1379172Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1379428Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1379854Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1380030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1471773Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1472432Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\cd98f68f-fa9a-4700-b10f-94e7375fe872\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1473894Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1481312Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1481586Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1482016Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1482220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1576802Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1577380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d0bca219-3375-4e1d-a821-f47a88f5129a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1578843Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1586607Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1586890Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1587329Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1587532Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1680683Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1681181Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5324baa9-57d1-4cb3-a786-41b238f83fd1\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1682464Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1702365Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1702791Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1703238Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1703462Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1799216Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1799762Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f218f178-6090-442d-a265-fb905f85ddeb\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1801212Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1809308Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1809585Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1810073Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1810243Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1902820Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1903420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1fba013e-33f6-4260-a0cc-28a6b71150d3\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1904935Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1912115Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1912399Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1912836Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.1913008Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2009812Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2010493Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0e9ee7ea-6f57-4baf-858c-7940755d9b47\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2011900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2019698Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2020113Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2020685Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2020868Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2121041Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2121566Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c2e49e73-99d4-4db6-a013-5381d95e2785\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2122928Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2130991Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2131267Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2131760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2131945Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2253751Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2254433Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f82af1d7-0e23-4b1b-9fd2-c28e6887ecb3\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2256041Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2263163Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2263436Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2263863Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2264021Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2359322Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2359888Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b0f88b76-50a4-452e-8987-075d2187e6e6\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2361291Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2369686Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2369989Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2370435Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2370607Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2471914Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2472475Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\99d66a39-045d-42ab-86d6-072db37ea92d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2473963Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2485323Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2485605Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2491035Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2491236Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2586605Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2587151Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4f75dc2d-ea52-4504-b160-ca4fd37d3a62\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2588530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2596653Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2596926Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2597422Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2597606Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2699029Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2699597Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f67349c2-2773-4dd8-9958-18322d13a94b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2700995Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2708823Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2709105Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2709549Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2709731Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2821502Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2822106Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\921b8cbe-1e48-4079-874a-06050bc813f6\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2823525Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2831724Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2832008Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2832499Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2832672Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2929406Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2929944Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d76c950b-e9c8-450b-9621-1b0951d3907f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2931365Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2939722Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2940046Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2940490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.2940662Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3033197Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3033773Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\42cf937f-42ac-4579-8e44-c9642750c989\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3035117Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3042372Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3042639Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3043068Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3043244Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3147639Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3148187Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e922b06f-2e4b-4e68-add5-9f21cc1c8143\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3149605Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3157771Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3158049Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3158615Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3158869Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3269142Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3269758Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\52907d15-c719-468a-ac9c-eb2d7a070e19\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3271227Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3292797Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3293247Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3293713Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3293887Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3406366Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3407009Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9e1ab21e-76bf-4f72-b902-53f232e15ffc\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3408504Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3416826Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3417157Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3417604Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3417781Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3527285Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3527799Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\468604fb-5253-43ef-9284-f684458bf3a7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3529091Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3536147Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3536421Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3536861Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3537028Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3632823Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3633399Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ad54e90e-5fba-45be-a782-7b7c08ebc7d2\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3634806Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3642292Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3642587Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3643023Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3643195Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3737902Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3738452Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ae929d65-9673-4860-8cc9-c86e12bcb447\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3739841Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3747883Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3748161Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3748634Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3748814Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3843026Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3843537Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a3740422-ec32-4b7b-b914-2c25b3700e9f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3844875Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3862826Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3863248Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3863713Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3863884Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3957693Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3958224Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8a1638a7-d697-415a-9082-b35128646d18\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3959520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3967466Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3967733Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3968228Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.3968407Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.4063853Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.4064459Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\917d3bd7-ad00-4f31-8285-3b63441d599c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.4066018Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.4073445Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.4073786Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.4074246Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.4074417Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.4153874Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.4154400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ef578362-0c55-4a7a-a7a9-f2716e6f0d0a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.4155745Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.4163949Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.4164222Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.4164719Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.4164910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.4247207Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.4247811Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e8df09b6-7353-49b4-9d04-6fe9fc51b004\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.4249260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.4257576Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.4258608Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.4259161Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.4259342Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.4337527Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.4338029Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9b9b70c3-b419-4c59-997d-f651e51b3164\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.4349690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.4360970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.4361587Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.4362315Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.4362581Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:58.6359330Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-11-15T22:29:58.6386050Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-11-15T22:29:58.6389472Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-11-15T22:29:58.6406527Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-11-15T22:29:58.6424813Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-11-15T22:29:58.6441281Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-11-15T22:29:59.5300414Z","@mt":"Identified {DiagnosticCount} diagnostics in project {ProjectName}","DiagnosticCount":9,"ProjectName":"PlantLady(net7.0-android)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.RoslynDiagnosticProvider"} +{"@t":"2022-11-15T22:29:59.5330275Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0001","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:29:59.5332284Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0002","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:29:59.5332542Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0005","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:29:59.5332719Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0006","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:29:59.5332870Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0007","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:29:59.5333025Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0008","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:29:59.5333172Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0010","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:29:59.5333348Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0012","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:29:59.5333508Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":9,"DiagnosticId":"UA0014","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:29:59.5333679Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0015","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:29:59.5333913Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"[UA306_A1, UA306_A2, UA306_A3, UA306_A4, UA306_B, UA306_C, UA306_D, UA306_E, UA306_F, UA306_G, UA306_H, UA306_I]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:29:59.5334100Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA307","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:29:59.5334246Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA309","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:29:59.5334442Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA310","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:29:59.5334604Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA311","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:29:59.5334750Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA312","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:29:59.5334938Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"[UA313, UA314]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:29:59.5335115Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"[UA315_A, UA315_C, UA315_B]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:29:59.5335908Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Update source code","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:59.5441784Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.5442426Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5b987bd8-e11b-4ffe-b7ea-9cb434a88d9e\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.5444238Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.5452068Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.5452371Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.5452803Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.5452980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.5541080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.5541608Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8f561382-bf91-4ccd-908c-da27407aa9d0\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.5542919Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.5551067Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.5551359Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.5551825Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.5552002Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.5650893Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.5651453Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4eed6bb6-2eb1-4057-8d35-09a92e29abf4\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.5652793Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.5660749Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.5661020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.5661502Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.5661689Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.5750630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.5751207Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2df41be8-5e87-433d-86dd-062f99acdf9d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.5752667Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.5797990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.5798429Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.5798875Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.5799041Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.5894331Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.5894892Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\425c6cf1-d850-454c-b890-5bddbe45f9fa\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.5896399Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.5904726Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.5905025Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.5905478Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.5905641Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.5996290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.5996776Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a6aaccf2-9968-40b0-9ecf-3b3bb4444960\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.5998039Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6015067Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6015504Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6016724Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6017124Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6121226Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6121788Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2de030b0-653b-4db6-a1f0-7ee0ba556017\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6123299Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6130706Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6130983Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6131414Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6131578Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6221562Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6222123Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8391d1a2-fb4d-46d7-be61-a4cd2526529d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6223416Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6231128Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6231501Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6232202Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6232447Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6325800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6326345Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\dc5034c6-615f-42b6-9116-675bceb0bbf0\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6365546Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6376171Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6376502Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6376985Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6377161Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6532513Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6533156Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\af9c1edd-e8a6-4ddf-af42-dbc518557a96\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6534808Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6543291Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6543645Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6544126Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6544298Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6717497Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6718227Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2ba3b1c7-76d9-4ce6-82a7-52b304ff9149\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6719792Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6772191Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6772520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6773027Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6773232Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6870608Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6871144Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\702630cf-ca7b-4e24-b792-ea4f13c7af70\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6872540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6880811Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6881093Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6881579Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6881777Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6978024Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6978578Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ae6b2067-5ab6-44ed-bbbb-fc3b21716715\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6979993Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6988208Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6988492Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6988986Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.6989167Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.7156785Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.7157447Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c82dbf59-7bc0-4fe0-a06e-677d0ce5daf7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.7159008Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.7166794Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.7167073Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.7167625Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.7167834Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:29:59.7180468Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.CodeFixerStep:UA0014","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:29:59.7192822Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Apply fix for UA0014: .NET MAUI projects should not reference Xamarin.Forms namespaces","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:30:00.0307546Z","@mt":"Source successfully updated","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:00.0310869Z","@mt":"Diagnostic UA0014 fixed in C:\\code\\PlantLady\\PlantLady\\PlantLady\\App.xaml.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:30:00.0639710Z","@mt":"Source successfully updated","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:00.0640441Z","@mt":"Diagnostic UA0014 fixed in C:\\code\\PlantLady\\PlantLady\\PlantLady\\AppShell.xaml.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:30:00.0792219Z","@mt":"Source successfully updated","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:00.0792692Z","@mt":"Diagnostic UA0014 fixed in C:\\code\\PlantLady\\PlantLady\\PlantLady\\AssemblyInfo.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:30:00.0940019Z","@mt":"Source successfully updated","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:00.0940679Z","@mt":"Diagnostic UA0014 fixed in C:\\code\\PlantLady\\PlantLady\\PlantLady\\Views\\HomePage.xaml.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:30:00.1007408Z","@mt":"Source successfully updated","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:00.1007919Z","@mt":"Diagnostic UA0014 fixed in C:\\code\\PlantLady\\PlantLady\\PlantLady\\Views\\PlantsPage.xaml.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:30:00.1018406Z","@mt":"Running analyzers on {ProjectName}","ProjectName":"PlantLady(net7.0-android)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.RoslynDiagnosticProvider"} +{"@t":"2022-11-15T22:30:00.1134590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1135249Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\21eebbe8-c6b7-45c6-9970-ae3889cc5f0e\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1136815Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1145339Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1145669Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1146362Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1146602Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1247538Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1248219Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b1e912c3-6276-4b79-8f42-f335e0e21f75\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1250372Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1312457Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1313068Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1314110Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1314453Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1429953Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1430627Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a86c975f-2eab-4bf1-96af-44e13f328d34\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1432308Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1439865Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1440159Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1440603Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1440766Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1534482Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1535036Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\956522fc-4ee1-4488-8c41-c0d2c7cd6ce6\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1536332Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1544319Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1544607Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1545136Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1545316Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1644525Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1645363Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\31532815-4af2-4c34-a03b-8c9b192e545c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1646746Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1653957Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1654262Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1654768Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1654945Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1752464Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1752981Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\591805b4-b6e7-4bc5-bcb1-270e92189dc8\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1754363Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1762602Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1762874Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1763368Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1763551Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1887406Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1888081Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5fe61e7e-7018-4e41-8baa-51ff0264f998\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1889715Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1897888Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1898255Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1898727Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1898920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1998674Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.1999228Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9a742aed-7139-458c-b8ec-41b478b49f13\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2000673Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2008961Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2009250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2009742Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2009921Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2112879Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2113488Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5b7bf471-de6a-41d5-af52-3e5491282a1a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2114942Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2123061Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2123375Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2123926Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2124141Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2222230Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2222914Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5d04b44e-0217-4f73-904f-406d585a1b4b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2224733Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2233473Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2233771Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2234211Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2234373Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2340428Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2341003Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\02333250-196d-45c4-b1a8-8b7a9ad618dc\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2342455Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2353333Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2353710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2354369Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2354615Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2478919Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2479523Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\26a678d5-4273-493c-b33a-fa88f07204df\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2480888Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2492749Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2493083Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2493561Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2493744Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2601535Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2602201Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\24a8c3cc-feb0-40d3-bb1f-2b79727b07e7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2603657Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2611746Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2612058Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2612556Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2613250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2713191Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2713763Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\11651574-1645-450c-b66e-410f0fddc351\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2715168Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2723215Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2723492Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2723974Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2724147Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2831173Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2831888Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e115be6e-542d-46ce-b3e1-730ad088d36a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2833433Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2842048Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2842344Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2842841Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2843026Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2955953Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2956630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\362a1c1d-89c3-4e4a-893f-08d964b955e4\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2958116Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2985638Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2986122Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2986582Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.2986761Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3102357Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3103045Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e84b04a5-c82f-477f-b707-73fc05905f6c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3104897Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3112581Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3112974Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3113456Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3113627Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3206371Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3207019Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\bc8a1c46-0ff5-4cf2-86df-39bd991383cc\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3208407Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3215879Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3216185Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3216634Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3216808Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3320683Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3321382Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\da9adaee-9916-48e3-99ea-b32c3fb588fe\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3323429Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3340536Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3340993Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3342090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3342415Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3464130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3464829Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5c25e98e-2755-4738-b931-8b80a2ac8aac\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3466555Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3474124Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3474399Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3474842Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3475024Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3581056Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3581827Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6d207738-7abc-4e1f-9ec0-a0d933150253\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3583294Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3607662Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3608092Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3608544Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3608721Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3707519Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3708132Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\815f431d-0c17-4cff-8554-5d3d6e79546f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3709679Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3716837Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3717113Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3717545Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3717709Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3814135Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3814967Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\48412854-7444-425b-b21f-d033a398a015\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3816540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3825092Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3825397Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3825839Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3826013Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3912349Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3912989Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9a06af4d-8439-49b0-9470-aaae08c0c4a6\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3914486Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3922743Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3923026Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3923517Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.3923703Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4009049Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4009592Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\cab4bf75-f72d-426a-89e2-0d8d84f454e9\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4010951Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4019203Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4019476Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4019987Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4020179Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4135849Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4136528Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\130976aa-2608-4819-9789-b9da3b03db97\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4138199Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4145331Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4145600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4146021Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4146181Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4235417Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4236044Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\53c3020c-ca8e-4cec-b2d8-5ae83157c982\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4237605Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4245180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4245477Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4245931Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4246096Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4331154Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4331717Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f03099c5-b51e-4203-9a1a-8a6f8be75e65\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4333164Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4341355Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4341628Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4342118Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4342298Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4435571Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4436185Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1bc17a38-3307-4508-9a28-f2fa02c78966\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4437710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4445089Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4445376Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4445813Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4445984Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4534340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4534857Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b80c83e2-489f-4824-8b75-3fe3a38b39cd\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4536196Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4544236Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4544519Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4545013Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4545186Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4655855Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4656745Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\520f104f-1eb6-49fd-9985-78b5b4fe5413\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4658823Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4671006Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4671314Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4671878Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4672080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4761919Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4762482Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7b776464-c9fc-464a-8783-2b546af39e45\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4763862Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4772041Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4772333Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4772830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.4773024Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.5686371Z","@mt":"Identified {DiagnosticCount} diagnostics in project {ProjectName}","DiagnosticCount":4,"ProjectName":"PlantLady(net7.0-android)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.RoslynDiagnosticProvider"} +{"@t":"2022-11-15T22:30:00.5736636Z","@mt":"Source successfully updated","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:00.5737233Z","@mt":"Diagnostic UA0014 fixed in C:\\code\\PlantLady\\PlantLady\\PlantLady\\App.xaml.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:30:00.5790599Z","@mt":"Source successfully updated","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:00.5791057Z","@mt":"Diagnostic UA0014 fixed in C:\\code\\PlantLady\\PlantLady\\PlantLady\\AppShell.xaml.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:30:00.5903910Z","@mt":"Source successfully updated","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:00.5905045Z","@mt":"Diagnostic UA0014 fixed in C:\\code\\PlantLady\\PlantLady\\PlantLady\\AssemblyInfo.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:30:00.5956557Z","@mt":"Source successfully updated","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:00.5957022Z","@mt":"Diagnostic UA0014 fixed in C:\\code\\PlantLady\\PlantLady\\PlantLady\\Views\\PlantsPage.xaml.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:30:00.5968271Z","@mt":"Running analyzers on {ProjectName}","ProjectName":"PlantLady(net7.0-android)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.RoslynDiagnosticProvider"} +{"@t":"2022-11-15T22:30:00.6068853Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6069577Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1882f407-2a2c-408e-b915-331105532c65\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6071275Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6117141Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6117661Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6118133Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6118304Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6207217Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6207725Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\aef36127-e970-4da7-b24b-742533dd6d86\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6209134Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6216274Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6216543Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6216976Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6217146Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6313962Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6314581Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e7f8a9de-4d78-41a0-b062-41d9701d695c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6316068Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6324338Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6324704Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6325241Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6325439Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6413799Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6414407Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c6ebd80a-52be-4c26-bdd6-60f981b9a990\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6416295Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6423920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6424222Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6424663Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6424839Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6514536Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6515093Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6fd0f678-6367-4437-808e-314ac9773fe8\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6516603Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6524311Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6524648Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6525130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6525321Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6639162Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6639796Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d792a9f4-028b-4a84-959c-d15ffeba3e20\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6641308Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6649469Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6649745Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6650234Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6650407Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6739649Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6740213Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\81c91dc8-a2fd-4608-9c0a-d68aa1325eeb\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6741871Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6749937Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6750219Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6750758Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6750957Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6836684Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6837177Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\cd4f75ed-98ed-4f36-8835-c64efb57e09f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6838414Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6845696Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6845964Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6846400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6846568Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6941986Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6942627Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a44be17f-5abd-4255-a5ad-2c06454f70ba\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6943950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6951963Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6952229Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6952760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.6952963Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7042109Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7042667Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\61caaa50-4c9b-43a8-95a3-e02d2fdc023a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7044071Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7052285Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7052566Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7053009Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7053187Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7175003Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7175768Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\22caa11a-a2c2-4600-97ed-7a2d4d26bce4\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7177322Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7184594Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7184871Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7185301Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7185509Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7275306Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7275870Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\bdf9cade-cc7d-4e33-95b0-6a0de9ff7c1d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7277279Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7284450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7284711Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7285136Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7285307Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7379920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7380499Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7c071949-a2ea-420f-a043-c4c823d3bd6e\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7381913Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7390227Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7390505Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7390993Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7391652Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7491772Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7492375Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b442c34c-3021-4968-8952-86f82f2b1c0f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7493987Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7501767Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7502069Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7502513Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7502689Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7595576Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7596302Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d0c20dfd-f776-4a02-8479-9a7aa7df6aff\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7598352Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7626667Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7627106Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7627562Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7627743Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7717862Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7718425Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9b3e1cc8-bfd2-4c10-ab8a-05d7028f107a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7719881Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7728266Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7728556Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7729052Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7729228Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7823840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7824434Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\671c7080-9850-4677-a6bf-5aebc0994bfb\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7825866Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7833487Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7833776Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7834213Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7834388Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7923889Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7924447Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\423d561c-2d8a-457f-8369-f5af07b636d6\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7925810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7933525Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7933814Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7934253Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.7934432Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8028438Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8028979Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e334287d-7e95-45df-b89f-7319e81b6afa\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8030285Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8037304Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8037578Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8038037Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8038210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8136638Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8137281Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f5ad4bf9-ee60-40a8-8f33-496ab38a6093\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8138814Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8165132Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8165560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8166020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8166193Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8250116Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8250790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0cb5b8b1-defb-4cda-b2c7-232e0a81f05b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8252587Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8259929Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8260206Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8260646Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8260814Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8340073Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8340652Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\27f86a5e-445f-4a70-8842-19a58da9854e\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8342025Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8349188Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8349601Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8350129Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8350318Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8437538Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8438163Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\742450c4-dce1-4d20-83c1-64f552f565e3\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8439402Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8446743Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8447050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8447501Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8447668Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8524024Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8524591Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2550c793-45ff-43f9-be48-e9dcd1de6f1b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8525919Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8533633Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8533917Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8534351Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8534515Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8648701Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8649420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\359ca3d8-e0a6-4a2e-874c-e923b5443f7e\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8651381Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8663232Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8663600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8664324Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8664560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8754495Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8755114Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4aa500c7-80ee-406a-a708-4bbf4351409e\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8756681Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8763960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8764245Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8764675Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8764842Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8848256Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8848828Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d044968b-16d1-4984-a2b5-7d4d092c96f9\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8850146Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8858364Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8858648Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8859139Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8859310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8943133Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8943739Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7666dd26-d6c3-47d0-887e-988c167c9ea7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8945212Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8952847Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8953163Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8953729Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.8953948Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.9040035Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.9040632Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\344675fd-293f-49fc-a2c8-0053d66bfc46\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.9042012Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.9050253Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.9050657Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.9051202Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.9051385Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.9156941Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.9157609Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\30f1dc40-9f6f-4cbd-88a9-47120c30335b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.9159132Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.9167289Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.9167593Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.9168044Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.9168212Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.9269197Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.9269800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3b14a10b-3e2a-4b3d-b64b-1211e518d707\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.9271188Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.9278563Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.9278844Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.9279284Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.9279450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.9381302Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.9381910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\cce6a54d-a5d3-4666-92f7-1cf7683e42fd\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.9383320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.9391548Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.9391850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.9392351Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:00.9392541Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:01.0213015Z","@mt":"Identified {DiagnosticCount} diagnostics in project {ProjectName}","DiagnosticCount":0,"ProjectName":"PlantLady(net7.0-android)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.RoslynDiagnosticProvider"} +{"@t":"2022-11-15T22:30:01.0232810Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Update source code","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:30:01.3875690Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets 'UAP,Version=v10.0.16299'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0758087Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0758755Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka PlantLady.PlantLady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0758957Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0759108Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka PlantLady.PlantLady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0759303Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka PlantLady.PlantLady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0759483Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka PlantLady.PlantLady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0759628Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka PlantLady.PlantLady:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0759775Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0759914Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka PlantLady.PlantLady:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0760060Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorAccent (aka PlantLady.PlantLady:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0760204Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka PlantLady.PlantLady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0760365Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka PlantLady.PlantLady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0760527Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka PlantLady.PlantLady:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0760669Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka PlantLady.PlantLady:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0760816Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0760961Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka PlantLady.PlantLady:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0761100Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka PlantLady.PlantLady:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0761242Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka PlantLady.PlantLady:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0761399Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0761600Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka PlantLady.PlantLady:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0761775Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0761919Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0762069Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0762208Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka PlantLady.PlantLady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0762351Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0762508Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka PlantLady.PlantLady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0762660Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka PlantLady.PlantLady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0762809Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka PlantLady.PlantLady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0762954Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka PlantLady.PlantLady:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0763102Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0763249Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka PlantLady.PlantLady:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0763388Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorAccent (aka PlantLady.PlantLady:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0763546Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka PlantLady.PlantLady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0763700Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka PlantLady.PlantLady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0763847Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka PlantLady.PlantLady:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0763992Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka PlantLady.PlantLady:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0764131Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0764277Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka PlantLady.PlantLady:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0764413Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka PlantLady.PlantLady:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0764560Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka PlantLady.PlantLady:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0764721Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0764873Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka PlantLady.PlantLady:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0765045Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.0765204Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.1310516Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.1793808Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\Microsoft Visual Studio\\2022\\Preview\\MSBuild\\Xamarin\\Android\\Xamarin.Android.Legacy.targets: (234, 5): The reference assemblies for MonoAndroid,Version=v1.0 were not found. To resolve this, install the Developer Pack (SDK/Targeting Pack) for this framework version or retarget your application. You can download .NET Framework Developer Packs at https://aka.ms/msbuild/developerpacks","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.1796836Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.2185586Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets 'Xamarin.iOS,Version=v1.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:08.2188494Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:10.6878524Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:30:11.0123254Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets 'UAP,Version=v10.0.16299'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7172736Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7173378Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka PlantLady.PlantLady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7173559Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7173716Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka PlantLady.PlantLady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7173900Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka PlantLady.PlantLady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7174071Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka PlantLady.PlantLady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7174224Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka PlantLady.PlantLady:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7174365Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7174509Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka PlantLady.PlantLady:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7174662Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorAccent (aka PlantLady.PlantLady:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7174803Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka PlantLady.PlantLady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7174967Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka PlantLady.PlantLady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7175115Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka PlantLady.PlantLady:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7175263Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka PlantLady.PlantLady:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7175404Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7175541Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka PlantLady.PlantLady:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7175683Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka PlantLady.PlantLady:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7175819Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka PlantLady.PlantLady:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7175977Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7176131Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka PlantLady.PlantLady:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7176276Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7176423Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7176561Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7176701Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka PlantLady.PlantLady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7176834Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7176974Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka PlantLady.PlantLady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7177129Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka PlantLady.PlantLady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7177277Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka PlantLady.PlantLady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7177420Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka PlantLady.PlantLady:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7177554Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7177721Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka PlantLady.PlantLady:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7177884Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorAccent (aka PlantLady.PlantLady:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7178020Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka PlantLady.PlantLady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7178176Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka PlantLady.PlantLady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7178325Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka PlantLady.PlantLady:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7178469Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka PlantLady.PlantLady:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7178610Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7178742Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka PlantLady.PlantLady:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7178885Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka PlantLady.PlantLady:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7179025Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka PlantLady.PlantLady:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7179176Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7179328Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka PlantLady.PlantLady:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7179466Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7179605Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.7707411Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.8211356Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\Microsoft Visual Studio\\2022\\Preview\\MSBuild\\Xamarin\\Android\\Xamarin.Android.Legacy.targets: (234, 5): The reference assemblies for MonoAndroid,Version=v1.0 were not found. To resolve this, install the Developer Pack (SDK/Targeting Pack) for this framework version or retarget your application. You can download .NET Framework Developer Packs at https://aka.ms/msbuild/developerpacks","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.8214489Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.8613412Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets 'Xamarin.iOS,Version=v1.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.8616617Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:17.8662525Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Update source code","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:30:17.8681078Z","@mt":"All instances of {DiagnosticId} fixed","@l":"Debug","DiagnosticId":"UA0014","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:30:17.8681334Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Apply fix for UA0014: .NET MAUI projects should not reference Xamarin.Forms namespaces","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:30:20.3299193Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.3299906Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\58bb4772-138c-4838-9121-a7e5919a5427\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.3301557Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.3309823Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.3310121Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.3310631Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.3310822Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.3436910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.3437567Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4bfc7d96-6280-4f31-9448-675e58370897\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.3439207Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.3446726Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.3447011Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.3447456Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.3447625Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.3546151Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.3546870Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6e70488c-4614-40cc-a0f6-e23ccc924fd8\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.3548190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.3555309Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.3555567Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.3555998Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.3556166Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.3649707Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.3650224Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\eb577efd-9077-468a-8e72-d0edaa8b947a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.3651632Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.3659843Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.3660144Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.3660670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.3660867Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.3758489Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.3759035Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\03c53497-e8e8-45d6-8ad9-ae656bf037de\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.3760479Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.3768924Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.3769220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.3769667Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.3769845Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.3869771Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.3870435Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5d3f3d49-6f0a-4e1a-9843-d961b5c27a84\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.3871998Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.3880746Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.3881080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.3899314Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.3899764Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4001406Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4001990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8704f13b-e20f-4af9-9208-03e0ce78bdc5\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4003449Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4010807Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4011081Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4011514Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4011677Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4109832Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4110369Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\293d527d-535d-472e-a097-57538fb161ca\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4112106Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4119400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4119698Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4120142Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4120320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4219934Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4220528Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c107d67b-45a9-4155-8bef-7d78284a909c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4222025Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4229586Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4229875Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4230316Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4230493Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4329427Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4330009Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2c68a446-6906-408e-abb5-c9483fc2ca80\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4331441Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4339740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4340083Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4340616Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4340798Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4447924Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4448693Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d29c3d87-7458-4274-9148-6d52a68940ac\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4450389Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4489154Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4489726Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4490190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4490363Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4597459Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4598186Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\38e9545d-1d43-47be-87cb-3087598ad174\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4599983Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4607888Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4608283Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4608780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4609024Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4719370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4720049Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\56bc9bf7-e3f4-4fea-b4eb-2916863b058f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4721566Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4729996Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4730287Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4730780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4730953Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4840495Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4841045Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4a720ece-7100-4bb8-87f4-26fb61134030\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4842362Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4850476Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4850747Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4851275Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4851478Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4958422Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4959026Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a0d849ea-3d9d-44de-8970-ec0b3b95be71\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4960772Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4968259Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4968543Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4968987Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.4969166Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5073349Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5073978Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e76337c7-d509-40f9-8078-b70b3cfdbe1d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5075484Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5100410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5100838Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5101400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5101617Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5206754Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5207624Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c5dc48c4-c665-481c-b4be-5c1670ab704b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5209282Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5217808Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5218095Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5218538Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5218709Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5320566Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5321101Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ee16256a-3c61-4d43-a967-07ff1696f32b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5322440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5330566Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5330838Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5331323Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5332280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5433239Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5433830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d097512a-6e68-442d-9d18-9ad4edbcfded\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5435246Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5443199Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5443482Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5443921Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5444088Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5527093Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5527627Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6b2238d5-4362-40f9-841b-c5d908891867\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5528950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5537190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5537571Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5538049Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5538267Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5652502Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5653164Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fa97084f-8904-4b57-bd85-4d289fb50bc7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5654711Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5662006Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5662274Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5662706Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5662870Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5753140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5753749Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d98b3666-288e-4420-b30f-a244480c6228\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5755206Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5763371Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5763643Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5764123Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.5764309Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7117405Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7118098Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6421df65-e3db-4a52-8961-81bd5169ff41\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7119704Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7127174Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7127449Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7127881Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7128051Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7208810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7209330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d03ac141-66fd-4ac7-aa60-f99d781924bb\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7210751Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7218288Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7218589Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7219042Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7219212Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7309086Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7309646Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e3344d7a-ea42-4aef-ba9a-29e4c04c25b2\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7311103Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7331921Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7332342Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7332855Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7333040Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7419103Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7419645Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4bbc2c30-458c-48cb-934a-bf5ba1caaaf6\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7421159Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7429185Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7429476Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7429923Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7430088Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7514696Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7515207Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\04161b02-24fc-4956-8a24-f3ed0b5e9f36\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7516469Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7524506Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7524780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7525272Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7525460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7612881Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7613480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\eccc0d48-2119-4638-8446-1209b2488c56\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7614930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7623267Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7623557Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7624057Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7624233Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7731633Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7732234Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a534952f-d666-4ed3-9fe2-e3aeedb19a2f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7733745Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7741350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7741632Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7742074Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7742254Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7840503Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7841001Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ba736361-358c-469c-a754-86e9f53f2847\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7842286Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7863035Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7863466Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7863925Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7864107Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7971116Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7971777Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\68b49f4a-7370-4cad-bdb7-d97baf732005\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7973134Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7980684Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7980956Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7981386Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.7981553Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8073621Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8074176Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\bedc7eb0-076b-4743-ba69-66d25ed16755\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8075516Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8083561Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8083837Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8084330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8084507Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8172528Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8173073Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\36b30873-ba32-45f5-9de2-d27f3b94fa9a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8174505Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8182781Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8183056Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8183556Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8183733Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8270081Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8270617Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9b74ba12-1780-44f4-be8f-e645bec68ace\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8271961Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8279192Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8279451Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8279886Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8280061Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8389893Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8390552Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1929baca-81ee-4a78-81c8-03229c2c1980\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8392099Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8400431Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8400729Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8401232Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8401408Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8492282Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8492889Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c7ed76e5-af42-4d3f-8b79-3a42cbf0fa44\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8494297Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8501731Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8502017Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8502458Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8502626Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8592819Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8593374Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\46c5cb66-d976-4013-8f5c-97f3bfba8fec\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8594800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8602053Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8602338Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8602774Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8602942Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8689881Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8690406Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ecef2c29-a014-42c4-bff6-712b39fcf339\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8691745Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8699340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8699615Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8700058Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8700241Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8788215Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8788776Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fa631886-9e6c-4cb6-88bd-fc6f9a63622c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8790155Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8798421Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8798718Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8799197Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8799377Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8902582Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8903225Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\64edc1c3-fc7a-444e-aec6-8fa700e69142\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8904644Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8912668Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8912941Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8913439Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.8913612Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.9010652Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.9011177Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b3e85523-0219-4209-ba9e-ed96e5fb4e9c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.9012503Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.9019583Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.9019885Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.9020338Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.9020517Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.9115598Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.9116156Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\74628c57-3573-469e-8d42-dda40789f4b9\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.9117378Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.9125511Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.9125798Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.9126269Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.9126440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.9225325Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.9225914Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9bea6ffb-52e1-4624-ae54-5583c8fab641\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.9227338Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.9235616Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.9235934Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.9236457Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.9236648Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.9335057Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.9335643Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a89b3f9a-2c55-4b8d-874b-da04f2a0e974\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.9336952Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.9358926Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.9359407Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.9359939Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.9360122Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.9463032Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.9463643Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f6043979-4979-4306-bbae-843f16a733f1\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.9465139Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.9472263Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.9472518Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.9472981Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.9473175Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.9568988Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.9569558Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1e984cad-a9bd-4873-bfe3-0c10d971091a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.9571109Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.9578730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.9579024Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.9579468Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:20.9579650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.0968399Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.0969110Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b52e336c-95db-46e4-a9b1-f5aaeb60fb0b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.0971149Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.0978409Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.0978681Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.0979160Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.0979352Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1079672Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1080216Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3da338c1-e249-4b33-ad91-ed798686d5e0\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1081572Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1089715Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1089997Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1090524Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1090712Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1212983Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1213762Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b07beb3b-e7ee-49bd-b7ad-97862a5d00c3\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1215748Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1223412Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1223692Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1224134Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1224344Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1325790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1326353Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\cd0f369e-efc7-44d1-ac98-7c6fd0a0571b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1327805Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1336069Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1336356Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1336853Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1337027Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1442375Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1442923Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\634ccfaf-e029-43a9-99d1-fe767820c824\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1444314Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1452607Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1452877Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1453365Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1453552Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1552736Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1553293Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9ec72ad4-bf14-4628-b1b3-241ee754104a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1554670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1562855Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1563134Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1563641Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1563818Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1669979Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1670538Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\74da39c5-4e0e-4775-88b0-6d642cfc9ed1\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1671962Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1679110Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1679383Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1693033Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1693429Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1786611Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1787195Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d7a454b0-81c5-428b-832f-a1b53633c339\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1788705Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1796301Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1796568Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1797003Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1797168Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1886450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1887045Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4ce8de87-3629-4b1f-9a04-615bdcf090ce\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1888536Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1896861Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1897147Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1897648Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1897828Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1986463Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1987015Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\bbe017cb-d698-439a-ab3c-dd5e4744bae9\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1988417Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1995605Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1995867Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1996326Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.1996503Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2083735Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2084295Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\23343477-a931-4607-ad00-feb6559111f1\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2085699Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2093869Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2094153Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2094645Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2094832Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2177247Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2177786Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ead04546-7e48-47da-99ca-e615a4c0160a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2179072Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2199458Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2199904Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2200355Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2200530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2286327Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2286872Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\58657a4a-5005-457c-bf1a-8b34b66b5cf7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2288471Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2296100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2296384Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2296829Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2297001Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2381900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2382493Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3417a623-7c1f-4061-a8e7-5c4d0bb5a1e4\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2384077Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2391332Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2391596Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2392015Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2392182Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2482361Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2482874Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4b7fd8bb-81ff-4b39-884b-769dec7a7e5f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2484235Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2491487Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2491758Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2492199Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2492373Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2588229Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2588838Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\54dc6868-1c75-4601-8e46-633885450a4d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2590203Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2598227Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2598499Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2598932Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2599102Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2689343Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2689950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a446904a-49e8-43c4-a8dc-c70ab468e689\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2691462Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2711668Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2712390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2712934Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2713371Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2809184Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2809983Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5cd0fc5a-4543-44b0-a2ef-c31e5e9427df\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2811712Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2822426Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2822788Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2823246Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2823430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2921203Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2921818Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7fbd95d4-40c0-40d6-b60d-82968db5a0bd\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2923300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2931685Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2931972Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2932464Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.2932634Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3019762Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3020358Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\93396cea-7e7b-41a5-96c7-42b1d01c6429\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3021749Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3029973Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3030261Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3030762Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3030932Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3121404Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3122047Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7f05f971-b296-4ca8-b34d-478ea74da783\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3123486Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3131637Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3131944Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3132397Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3132584Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3244341Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3245033Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\315261be-cfb4-4a00-8879-f0ef644be5a1\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3246581Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3254906Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3255204Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3255710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3255882Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3345268Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3345817Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8e4a353c-53fb-4bfc-b1fc-46ab659718eb\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3347172Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3354647Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3354942Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3355382Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3355550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3445138Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3445704Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a4959b71-93b7-400c-8ed6-c299136ea45d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3447017Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3454308Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3454610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3455075Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3455252Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3548482Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3549019Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3a6785b8-7153-421c-b0fe-1636c55968a6\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3550391Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3558353Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3558633Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3559083Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3559257Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3645115Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3645621Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\73967873-130e-48c0-bdda-e655cccb2bad\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3646920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3655100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3655421Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3655959Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3656152Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3785302Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3786004Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\56c43cd0-5683-43f7-a865-bd4db818b530\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3787533Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3795773Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3796055Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3796543Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3796719Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3898785Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3899388Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\79283c16-e5e0-45fd-887b-70e675769850\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3900844Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3909157Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3909457Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3909946Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.3910241Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4000932Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4001476Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6ae63e26-46bf-4857-b065-ddc369ee54f7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4002983Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4010194Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4010468Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4010910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4011101Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4097145Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4097722Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\21a8e07f-5586-4b50-9f27-ad9508771922\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4099169Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4107344Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4107612Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4108144Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4108353Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4195626Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4196128Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\012ecf83-d840-46d9-956c-1cf6cea351f5\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4197504Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4217814Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4218274Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4218736Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4218921Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4309898Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4310429Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\33a2d42c-bbd7-4d60-89bb-79c79699f847\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4311863Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4318956Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4319211Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4319649Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4319860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4414577Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4415152Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\39f298f3-5800-44e2-b52e-d5b68093d5bb\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4416602Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4424851Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4425150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4425655Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4425837Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4515487Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4516108Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\39f816a7-5d76-4613-b4a4-7ec95ae6399d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4517669Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4525092Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4525378Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4525813Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4526050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4534462Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Move to next project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:30:21.4548681Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Move to next project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:30:21.4549057Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:30:21.4562809Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Move to next project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep"} +{"@t":"2022-11-15T22:30:21.4573892Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Move to next project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep"} +{"@t":"2022-11-15T22:30:21.4592842Z","@mt":"Resetting upgrade step {UpgradeStep} because upgrade context has changed significantly since it was initialized","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep"} +{"@t":"2022-11-15T22:30:21.4598612Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Select project to upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:30:21.4698267Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4698860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c302ed77-430a-4ed1-a3c7-88dc797778e3\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4700290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4708639Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4708927Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4709547Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4709771Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4824326Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4825064Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5dc222f9-7eb6-4315-9211-77df836b9624\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4826636Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4835049Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4835328Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4835817Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4835991Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.4842148Z","@mt":"Skip minimum dependency check because .NET MAUI support multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:30:21.4851345Z","@mt":"Project {Name} is of type .NET MAUI Target:Android, migration to .NET MAUI recommends net7.0-android.","Name":"PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:30:21.4861578Z","@mt":"Project {Name} is of type .NET MAUI Target:iOS, migration to .NET MAUI recommends net7.0-ios.","Name":"PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:30:21.4874866Z","@mt":"Could not merge incoming TFM update from {Current} to {Next}","@l":"Warning","Current":"net7.0-android","Next":"net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.TargetFrameworkSelector"} +{"@t":"2022-11-15T22:30:21.5812841Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.5813539Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9b4807ba-c72e-409b-8923-8a339c9aeb67\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.5816795Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9b4807ba-c72e-409b-8923-8a339c9aeb67\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.5817620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.7998338Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.9760033Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.9761425Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.9875698Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.9876293Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\dc9c03d9-9ff9-409a-a04e-dede0c7252d6\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.9879363Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\dc9c03d9-9ff9-409a-a04e-dede0c7252d6\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.9880178Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.9881736Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.9936197Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:21.9937338Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0033550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0034074Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\cbe95a15-1430-492f-b89d-24a14003b940\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0037048Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\cbe95a15-1430-492f-b89d-24a14003b940\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0037859Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0039454Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0131800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0133119Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0225600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0226213Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\42d8cfbd-5a6e-4421-8280-fdb3c755562f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0229123Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\42d8cfbd-5a6e-4421-8280-fdb3c755562f\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0229938Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0231540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0289368Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0290468Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0383267Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0383836Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3d9f40ab-98e9-4a6a-a45a-e1dc5ff78649\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0386886Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3d9f40ab-98e9-4a6a-a45a-e1dc5ff78649\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0387717Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0389304Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0464572Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0465860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0562444Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0562988Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0d5a18f0-a5b1-4af6-9ecb-23ae9959d701\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0565949Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0d5a18f0-a5b1-4af6-9ecb-23ae9959d701\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0566746Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0568316Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0622681Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0623783Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0632386Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Select project to upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:30:22.0632675Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:30:22.0633845Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Select project to upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep"} +{"@t":"2022-11-15T22:30:22.0717898Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0718475Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2d9378ba-4b1e-47ac-905a-bf0aa47d67c1\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0719905Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0728255Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0728578Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0729088Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0729267Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0804984Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0805495Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9256d05b-a734-45d1-8d0e-3077c75f7a71\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0806745Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0832811Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0833266Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0833738Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0833924Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0840516Z","@mt":"Skip minimum dependency check because .NET MAUI support multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:30:22.0852216Z","@mt":"Project {Name} is of type .NET MAUI Target:Android, migration to .NET MAUI recommends net7.0-android.","Name":"PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:30:22.0862173Z","@mt":"Project {Name} is of type .NET MAUI Target:iOS, migration to .NET MAUI recommends net7.0-ios.","Name":"PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:30:22.0871473Z","@mt":"Could not merge incoming TFM update from {Current} to {Next}","@l":"Warning","Current":"net7.0-android","Next":"net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.TargetFrameworkSelector"} +{"@t":"2022-11-15T22:30:22.0958317Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0958860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\16d70805-2eb2-4777-bbcd-f70adfde97ee\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0960395Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0967739Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0968027Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0968455Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.0968622Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1046987Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1047537Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4b9d6019-34f4-491b-b00d-119ee8f4847c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1048980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1056235Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1056507Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1056937Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1057110Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1139835Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1140452Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b1dfe1d2-17da-4f76-bb2e-e959ee5012bb\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1143593Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b1dfe1d2-17da-4f76-bb2e-e959ee5012bb\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1144473Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1146067Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1203299Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1204604Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1306152Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1306802Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b8c24d1e-037b-47df-9ac0-2e2b4f250cac\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1309966Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b8c24d1e-037b-47df-9ac0-2e2b4f250cac\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1310799Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1312423Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1366996Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1368075Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1449649Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1450213Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\021f2eb2-b716-495d-ba26-bbd9327a5308\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1453235Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\021f2eb2-b716-495d-ba26-bbd9327a5308\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1454087Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1455694Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1509436Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1510545Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1592641Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1593247Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b52afe4d-a318-41e3-a0d6-738414d89d3a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1596377Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b52afe4d-a318-41e3-a0d6-738414d89d3a\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1597220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1598859Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1674021Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1675271Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1758241Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1758821Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a0055cbd-a276-466c-95b9-8f229950bb77\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1761971Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a0055cbd-a276-466c-95b9-8f229950bb77\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1762900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1764933Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1820943Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1822074Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1914625Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1915179Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\15262712-b5a6-49b9-9bb7-0e29ade04dbc\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1918309Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\15262712-b5a6-49b9-9bb7-0e29ade04dbc\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1919210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1920874Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1995607Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.1996858Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.2582286Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.2582999Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8be66538-a79f-4e8b-ac64-b7060d2bc25a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.2586392Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8be66538-a79f-4e8b-ac64-b7060d2bc25a\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.2587326Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.2769945Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.2967149Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.2967800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.3062883Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.3063464Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\826ed3cc-f266-437d-afc4-e27fe867c1cb\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.3066562Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\826ed3cc-f266-437d-afc4-e27fe867c1cb\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.3067418Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.3068241Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.3138412Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.3139111Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.3233811Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.3234457Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9de36bbd-db13-492e-bd52-0f638ae6b84a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.3237539Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9de36bbd-db13-492e-bd52-0f638ae6b84a\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.3238429Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.3239220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.3259744Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.3260241Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.3347912Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.3348553Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\828587a4-79fc-4769-a1bb-a2e52cbd7e47\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.3351635Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\828587a4-79fc-4769-a1bb-a2e52cbd7e47\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.3352500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.3353303Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.3376188Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.3376767Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.3472485Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.3472985Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a89f3043-9256-4821-9eb7-0620956201a7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.3475953Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a89f3043-9256-4821-9eb7-0620956201a7\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.3476844Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.3477648Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.3500247Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.3500736Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.3591846Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.3592373Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7e22fa6c-e7e9-4161-8e14-973ee831966a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.3595404Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7e22fa6c-e7e9-4161-8e14-973ee831966a\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.3596239Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.3597020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.3733468Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.3734280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.4093623Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.4094273Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4a4891f0-6779-4ffe-ad47-350af3b8830d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.4097542Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4a4891f0-6779-4ffe-ad47-350af3b8830d\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.4098392Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.4117949Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.4291283Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.4293005Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.4390754Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.4391368Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\84cef507-6cad-440e-a452-a8314c6900f3\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.4394394Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\84cef507-6cad-440e-a452-a8314c6900f3\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.4395189Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.4395949Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.4414956Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.4416455Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.4512131Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.4512737Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2e5216a4-71f1-42b1-913d-b7fcb8efe5c3\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.4515794Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2e5216a4-71f1-42b1-913d-b7fcb8efe5c3\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.4516609Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.4517331Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.4537943Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.4539386Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.4634435Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.4635047Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\024c09dc-4f0f-4553-a105-a69a0834a415\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.4638053Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\024c09dc-4f0f-4553-a105-a69a0834a415\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.4638842Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.4639541Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.4657856Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.4659287Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.4774774Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.4775416Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f4e16fa1-26e4-42b5-bf2a-ed4def477ceb\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.4778449Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f4e16fa1-26e4-42b5-bf2a-ed4def477ceb\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.4779245Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.4779938Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.4800226Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.4801727Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.4897397Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.4897997Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\310e2b5f-7f93-481f-9eb4-1eeca145a2fd\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.4901043Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\310e2b5f-7f93-481f-9eb4-1eeca145a2fd\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.4901884Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.4902633Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.4922810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.4924353Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.4930001Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Select project to upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep"} +{"@t":"2022-11-15T22:30:22.4941464Z","@mt":"Resetting upgrade step {UpgradeStep} because upgrade context has changed significantly since it was initialized","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.4941905Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Back up project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:30:22.4954019Z","@mt":"Determining backup path","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.4954598Z","@mt":"Using backup path {BackupPath}","@l":"Debug","BackupPath":"C:\\code\\PlantLady.backup\\PlantLady.UWP","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.4955072Z","@mt":"Backup upgrade step initialized as incomplete; will backup to {BackupLocation}","@l":"Debug","BackupLocation":"C:\\code\\PlantLady.backup\\PlantLady.UWP","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.4955613Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Back up project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:30:22.4955799Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:30:22.4956718Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Back up project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.4966893Z","@mt":"Determining backup path","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.4967444Z","@mt":"Using backup path {BackupPath}","@l":"Debug","BackupPath":"C:\\code\\PlantLady.backup\\PlantLady.UWP","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.4968998Z","@mt":"Backing up {ProjectDir} to {BackupPath}","ProjectDir":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP","BackupPath":"C:\\code\\PlantLady.backup\\PlantLady.UWP","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.4999917Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\aloevera.jpg","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.UWP\\aloevera.jpg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.5100831Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\App.xaml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.UWP\\App.xaml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.5230317Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\App.xaml.cs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.UWP\\App.xaml.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.5323911Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\MainPage.xaml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.UWP\\MainPage.xaml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.5425147Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\MainPage.xaml.cs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.UWP\\MainPage.xaml.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.5532012Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\Package.appxmanifest","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.UWP\\Package.appxmanifest","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.5540044Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.UWP\\PlantLady.UWP.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.5558436Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\Assets\\LargeTile.scale-100.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.UWP\\Assets\\LargeTile.scale-100.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.5573226Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\Assets\\LargeTile.scale-200.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.UWP\\Assets\\LargeTile.scale-200.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.5589608Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\Assets\\LargeTile.scale-400.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.UWP\\Assets\\LargeTile.scale-400.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.5602880Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\Assets\\SmallTile.scale-100.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.UWP\\Assets\\SmallTile.scale-100.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.5616409Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\Assets\\SmallTile.scale-200.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.UWP\\Assets\\SmallTile.scale-200.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.5632022Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\Assets\\SmallTile.scale-400.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.UWP\\Assets\\SmallTile.scale-400.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.5646638Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\Assets\\SplashScreen.scale-100.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.UWP\\Assets\\SplashScreen.scale-100.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.5661604Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\Assets\\SplashScreen.scale-200.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.UWP\\Assets\\SplashScreen.scale-200.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.5682947Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\Assets\\SplashScreen.scale-400.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.UWP\\Assets\\SplashScreen.scale-400.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.5699600Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\Assets\\Square150x150Logo.scale-100.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.UWP\\Assets\\Square150x150Logo.scale-100.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.5716380Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\Assets\\Square150x150Logo.scale-200.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.UWP\\Assets\\Square150x150Logo.scale-200.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.5732011Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\Assets\\Square150x150Logo.scale-400.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.UWP\\Assets\\Square150x150Logo.scale-400.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.5745351Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\Assets\\Square44x44Logo.altform-unplated_targetsize-16.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.UWP\\Assets\\Square44x44Logo.altform-unplated_targetsize-16.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.5760586Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\Assets\\Square44x44Logo.altform-unplated_targetsize-256.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.UWP\\Assets\\Square44x44Logo.altform-unplated_targetsize-256.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.5774190Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\Assets\\Square44x44Logo.altform-unplated_targetsize-48.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.UWP\\Assets\\Square44x44Logo.altform-unplated_targetsize-48.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.5796660Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\Assets\\Square44x44Logo.scale-100.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.UWP\\Assets\\Square44x44Logo.scale-100.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.5810449Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\Assets\\Square44x44Logo.scale-200.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.UWP\\Assets\\Square44x44Logo.scale-200.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.5827158Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\Assets\\Square44x44Logo.scale-400.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.UWP\\Assets\\Square44x44Logo.scale-400.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.5845248Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\Assets\\Square44x44Logo.targetsize-16.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.UWP\\Assets\\Square44x44Logo.targetsize-16.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.5860047Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\Assets\\Square44x44Logo.targetsize-256.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.UWP\\Assets\\Square44x44Logo.targetsize-256.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.5878561Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\Assets\\Square44x44Logo.targetsize-48.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.UWP\\Assets\\Square44x44Logo.targetsize-48.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.5890604Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\Assets\\StoreLogo.backup.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.UWP\\Assets\\StoreLogo.backup.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.5904891Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\Assets\\StoreLogo.scale-100.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.UWP\\Assets\\StoreLogo.scale-100.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.5919772Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\Assets\\StoreLogo.scale-200.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.UWP\\Assets\\StoreLogo.scale-200.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.5931513Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\Assets\\StoreLogo.scale-400.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.UWP\\Assets\\StoreLogo.scale-400.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.5945631Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\Assets\\Wide310x150Logo.scale-100.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.UWP\\Assets\\Wide310x150Logo.scale-100.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.5968760Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\Assets\\Wide310x150Logo.scale-200.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.UWP\\Assets\\Wide310x150Logo.scale-200.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.5984062Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\Assets\\Wide310x150Logo.scale-400.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.UWP\\Assets\\Wide310x150Logo.scale-400.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.6094199Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\obj\\PlantLady.UWP.csproj.nuget.dgspec.json","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.UWP\\obj\\PlantLady.UWP.csproj.nuget.dgspec.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.6102958Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\obj\\PlantLady.UWP.csproj.nuget.g.props","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.UWP\\obj\\PlantLady.UWP.csproj.nuget.g.props","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.6111118Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\obj\\PlantLady.UWP.csproj.nuget.g.targets","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.UWP\\obj\\PlantLady.UWP.csproj.nuget.g.targets","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.6205887Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\obj\\project.assets.json","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.UWP\\obj\\project.assets.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.6296618Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\obj\\project.nuget.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.UWP\\obj\\project.nuget.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.6384953Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\obj\\x86\\Debug\\DesignTimeResolveAssemblyReferencesInput.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.UWP\\obj\\x86\\Debug\\DesignTimeResolveAssemblyReferencesInput.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.6510401Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\Properties\\AssemblyInfo.cs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.UWP\\Properties\\AssemblyInfo.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.6578317Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\Properties\\Default.rd.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.UWP\\Properties\\Default.rd.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.6585111Z","@mt":"Project backed up to C:\\code\\PlantLady.backup\\PlantLady.UWP","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.6594751Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Back up project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:30:22.6686476Z","@mt":"Resetting upgrade step {UpgradeStep} because upgrade context has changed significantly since it was initialized","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.TryConvertProjectConverterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.TryConvertProjectConverterStep"} +{"@t":"2022-11-15T22:30:22.6687208Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Convert project file to SDK style","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:30:22.6700225Z","@mt":"Project {ProjectPath} not yet converted","@l":"Debug","ProjectPath":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.TryConvertRunner"} +{"@t":"2022-11-15T22:30:22.6815557Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.6816183Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e0a6d709-fd53-4c2d-8b42-3f19fb43b5de\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.6819478Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e0a6d709-fd53-4c2d-8b42-3f19fb43b5de\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.6820293Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.6821885Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.6879771Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.6881548Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.7002055Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.7002670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f466a022-a4b8-4f0c-9e67-0c5f6ff7a4dd\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.7005630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f466a022-a4b8-4f0c-9e67-0c5f6ff7a4dd\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.7006467Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.7008056Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.7067727Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.7069044Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.7077207Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Convert project file to SDK style","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:30:22.7077501Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.TryConvertProjectConverterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:30:22.7078796Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Convert project file to SDK style","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.TryConvertProjectConverterStep"} +{"@t":"2022-11-15T22:30:22.7209810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.7210456Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c2855308-d186-4c10-aafd-a30f00bf6510\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.7214383Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c2855308-d186-4c10-aafd-a30f00bf6510\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.7215541Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.7217303Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.7295872Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.7297143Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.7401423Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.7402149Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2173724b-2ad7-4b28-b16d-2bab33567536\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.7406515Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2173724b-2ad7-4b28-b16d-2bab33567536\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.7407641Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.7410946Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.7546581Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.7549696Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.7581471Z","@mt":"Converting project file format with try-convert, version 0.4.355802+b2aeae2c0e41fbfed35df6ab2e88b82a0c11be2b","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.TryConvertRunner"} +{"@t":"2022-11-15T22:30:22.7604046Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"MSBuild.Conversion.Project, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_try-convert6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:30:22.8284452Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.8285085Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2960898a-96a5-4468-98cc-fd9a02edc467\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.8288208Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2960898a-96a5-4468-98cc-fd9a02edc467\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.8289074Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.8290721Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.8368819Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.8370182Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.8470004Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.8470549Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\beb33670-7dac-406e-a122-4438aaf72460\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.8473574Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\beb33670-7dac-406e-a122-4438aaf72460\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.8474428Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.8476528Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for UAP,Version=v10.0.16299...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.8535738Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.8536854Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with UAP,Version=v10.0.16299.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:22.8543194Z","@mt":"Skip minimum dependency check because Windows App SDK cannot work with targets lower than already recommended TFM.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:30:22.8558041Z","@mt":"Recommending Windows TFM {TFM} because the project either has Windows-specific dependencies or builds to a WinExe","TFM":"net7.0-windows","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsSdkTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:30:22.8680953Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"MSBuild.Conversion.Facts, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_try-convert6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:30:24.6743620Z","@mt":"Converting project {Path} to SDK style","Path":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.TryConvertInProcessTool"} +{"@t":"2022-11-15T22:30:24.6811283Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"MSBuild.Conversion.Package, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_try-convert6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:30:25.3869863Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj: (0, 0): Project PlantLady is not compatible with uap10.0.16299 (UAP,Version=v10.0.16299). Project PlantLady supports:\r\n - net6.0-android31.0 (.NETCoreApp,Version=v6.0)\r\n - net6.0-ios15.4 (.NETCoreApp,Version=v6.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:25.3870504Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj: (0, 0): Project PlantLady is not compatible with uap10.0.16299 (UAP,Version=v10.0.16299) / win10-arm. Project PlantLady supports:\r\n - net6.0-android31.0 (.NETCoreApp,Version=v6.0)\r\n - net6.0-ios15.4 (.NETCoreApp,Version=v6.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:25.3870733Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj: (0, 0): Project PlantLady is not compatible with uap10.0.16299 (UAP,Version=v10.0.16299) / win10-arm-aot. Project PlantLady supports:\r\n - net6.0-android31.0 (.NETCoreApp,Version=v6.0)\r\n - net6.0-ios15.4 (.NETCoreApp,Version=v6.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:25.3870902Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj: (0, 0): Project PlantLady is not compatible with uap10.0.16299 (UAP,Version=v10.0.16299) / win10-arm64-aot. Project PlantLady supports:\r\n - net6.0-android31.0 (.NETCoreApp,Version=v6.0)\r\n - net6.0-ios15.4 (.NETCoreApp,Version=v6.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:25.3871053Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj: (0, 0): Project PlantLady is not compatible with uap10.0.16299 (UAP,Version=v10.0.16299) / win10-x64. Project PlantLady supports:\r\n - net6.0-android31.0 (.NETCoreApp,Version=v6.0)\r\n - net6.0-ios15.4 (.NETCoreApp,Version=v6.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:25.3871195Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj: (0, 0): Project PlantLady is not compatible with uap10.0.16299 (UAP,Version=v10.0.16299) / win10-x64-aot. Project PlantLady supports:\r\n - net6.0-android31.0 (.NETCoreApp,Version=v6.0)\r\n - net6.0-ios15.4 (.NETCoreApp,Version=v6.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:25.3871343Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj: (0, 0): Project PlantLady is not compatible with uap10.0.16299 (UAP,Version=v10.0.16299) / win10-x86. Project PlantLady supports:\r\n - net6.0-android31.0 (.NETCoreApp,Version=v6.0)\r\n - net6.0-ios15.4 (.NETCoreApp,Version=v6.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:25.3871514Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj: (0, 0): Project PlantLady is not compatible with uap10.0.16299 (UAP,Version=v10.0.16299) / win10-x86-aot. Project PlantLady supports:\r\n - net6.0-android31.0 (.NETCoreApp,Version=v6.0)\r\n - net6.0-ios15.4 (.NETCoreApp,Version=v6.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:25.3871695Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets '.NETCoreApp,Version=v6.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9883539Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9884208Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka PlantLady.PlantLady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9884409Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9884576Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka PlantLady.PlantLady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9884730Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka PlantLady.PlantLady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9884935Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka PlantLady.PlantLady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9885113Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka PlantLady.PlantLady:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9885262Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9885404Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka PlantLady.PlantLady:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9885537Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorAccent (aka PlantLady.PlantLady:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9885675Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka PlantLady.PlantLady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9885815Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka PlantLady.PlantLady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9886009Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka PlantLady.PlantLady:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9886169Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka PlantLady.PlantLady:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9886309Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9886450Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka PlantLady.PlantLady:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9886590Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka PlantLady.PlantLady:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9886722Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka PlantLady.PlantLady:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9886863Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9887014Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka PlantLady.PlantLady:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9887171Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9887308Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9887450Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9887590Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka PlantLady.PlantLady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9887725Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9887861Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka PlantLady.PlantLady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9888009Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka PlantLady.PlantLady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9888167Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka PlantLady.PlantLady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9888310Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka PlantLady.PlantLady:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9888442Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9888580Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka PlantLady.PlantLady:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9888712Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorAccent (aka PlantLady.PlantLady:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9888853Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka PlantLady.PlantLady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9889037Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka PlantLady.PlantLady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9889212Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka PlantLady.PlantLady:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9889358Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka PlantLady.PlantLady:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9889496Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9889627Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka PlantLady.PlantLady:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9889765Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka PlantLady.PlantLady:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9889897Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka PlantLady.PlantLady:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9890036Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka PlantLady.PlantLady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9890193Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka PlantLady.PlantLady:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9890338Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:31.9890478Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:32.0417716Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:32.0942398Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\Microsoft Visual Studio\\2022\\Preview\\MSBuild\\Xamarin\\Android\\Xamarin.Android.Legacy.targets: (234, 5): The reference assemblies for MonoAndroid,Version=v1.0 were not found. To resolve this, install the Developer Pack (SDK/Targeting Pack) for this framework version or retarget your application. You can download .NET Framework Developer Packs at https://aka.ms/msbuild/developerpacks","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:32.0945376Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:32.1334334Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets 'Xamarin.iOS,Version=v1.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:32.1337413Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:32.1377180Z","@mt":"Project file converted successfully! The project may require additional changes to build successfully against the new .NET target.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.TryConvertRunner"} +{"@t":"2022-11-15T22:30:32.1418670Z","@mt":"Restoring packages for {ProjectPath} with dotnet restore","@l":"Debug","ProjectPath":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.DotnetRestorePackageRestorer"} +{"@t":"2022-11-15T22:30:33.0269483Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":" Determining projects to restore...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:30:33.9681526Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj : error NU1201: Project PlantLady is not compatible with net6.0-windows10.0.19041 (.NETCoreApp,Version=v6.0). Project PlantLady supports:","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:30:33.9682278Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj : error NU1201: - net7.0-android33.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:30:33.9682442Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj : error NU1201: - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:30:34.0147165Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":" Failed to restore C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj (in 329 ms).","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:30:34.2201789Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":" Restored C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj (in 543 ms).","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:30:34.2607075Z","@mt":"[{Tool}] Error: Exited with non-success code: {ExitCode}","@l":"Debug","Tool":"dotnet-restore","ExitCode":1,"SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:30:34.8315871Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj: (0, 0): Project PlantLady is not compatible with net6.0-windows10.0.19041 (.NETCoreApp,Version=v6.0). Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:34.8316448Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets '.NETCoreApp,Version=v6.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:49.8678486Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:49.8679258Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:49.8679522Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:49.8679685Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:49.9485986Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:50.0017154Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\Microsoft Visual Studio\\2022\\Preview\\MSBuild\\Xamarin\\Android\\Xamarin.Android.Legacy.targets: (234, 5): The reference assemblies for MonoAndroid,Version=v1.0 were not found. To resolve this, install the Developer Pack (SDK/Targeting Pack) for this framework version or retarget your application. You can download .NET Framework Developer Packs at https://aka.ms/msbuild/developerpacks","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:50.0020317Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:50.0608498Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets 'Xamarin.iOS,Version=v1.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:50.0634221Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:50.0892832Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Convert project file to SDK style","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.TryConvertProjectConverterStep"} +{"@t":"2022-11-15T22:30:54.8659491Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.8660167Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3d8cc77b-4e8e-4fd5-b89c-10e35976f871\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.8663476Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3d8cc77b-4e8e-4fd5-b89c-10e35976f871\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.8664345Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.8698904Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.8819404Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.8820068Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.8917603Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.8918171Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d78ca4dd-c820-4f0b-882d-42ee5cc7ca5b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.8921352Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d78ca4dd-c820-4f0b-882d-42ee5cc7ca5b\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.8922203Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.8923138Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.8985401Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.8986125Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.9089711Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.9090350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4a3cc551-e1a1-4257-8a8a-921c66f6521c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.9093561Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4a3cc551-e1a1-4257-8a8a-921c66f6521c\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.9094410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.9095301Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.9122181Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.9122726Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.9218557Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.9219128Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5c3519ee-71a1-406c-9b5c-1a8f3d36186a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.9222299Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5c3519ee-71a1-406c-9b5c-1a8f3d36186a\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.9223160Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.9224063Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.9252684Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.9253227Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.9258549Z","@mt":"Resetting upgrade step {UpgradeStep} because upgrade context has changed significantly since it was initialized","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:30:54.9359389Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.9359972Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1cfffa0f-41be-4b16-81bb-5363b37c9884\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.9363056Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1cfffa0f-41be-4b16-81bb-5363b37c9884\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.9363905Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.9364764Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.9411685Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.9412339Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.9512620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.9513255Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\df10f7d5-2805-4105-a3b8-349e3d5d639f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.9516586Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\df10f7d5-2805-4105-a3b8-349e3d5d639f\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.9517491Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.9518359Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.9545066Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.9545652Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.9652658Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.9653257Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\013f4c72-6dd6-4093-811e-44bb69a7c08e\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.9656357Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\013f4c72-6dd6-4093-811e-44bb69a7c08e\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.9657168Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.9658028Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.9684181Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.9684749Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.9781460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.9781981Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a1cb96b1-9ebc-4a43-b5c5-fde68b57438c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.9784983Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a1cb96b1-9ebc-4a43-b5c5-fde68b57438c\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.9785834Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.9786720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.9851414Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.9852153Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:54.9857398Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Clean up NuGet package references","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:30:54.9868493Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Clean up NuGet package references","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:30:54.9868833Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:30:54.9880581Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:30:54.9881505Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:30:54.9891288Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:30:54.9891550Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:30:54.9900845Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:30:54.9901403Z","@mt":"Marking package {PackageName} for removal based on package mapping configuration {PackageMapSet}","PackageName":"Xamarin.Forms","PackageMapSet":"Xamarin Legacy Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.PackageMapReferenceAnalyzer"} +{"@t":"2022-11-15T22:30:54.9912561Z","@mt":"Marking package {PackageName} for removal based on package mapping configuration {PackageMapSet}","PackageName":"Microsoft.NETCore.UniversalWindowsPlatform","PackageMapSet":"UWP","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.PackageMapReferenceAnalyzer"} +{"@t":"2022-11-15T22:30:54.9925943Z","@mt":"Adding package {PackageName} based on package mapping configuration {PackageMapSet}","PackageName":"Microsoft.WindowsAppSDK","PackageMapSet":"UWP","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.PackageMapReferenceAnalyzer"} +{"@t":"2022-11-15T22:30:54.9936676Z","@mt":"Adding package {PackageName} based on package mapping configuration {PackageMapSet}","PackageName":"Microsoft.Graphics.Win2D","PackageMapSet":"UWP","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.PackageMapReferenceAnalyzer"} +{"@t":"2022-11-15T22:30:54.9947210Z","@mt":"Marking package {PackageName} for removal based on package mapping configuration {PackageMapSet}","PackageName":"Xamarin.Essentials","PackageMapSet":"Xamarin Legacy Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.PackageMapReferenceAnalyzer"} +{"@t":"2022-11-15T22:30:55.0236798Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:30:55.0237285Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Remove package 'Xamarin.Forms'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:30:55.0250442Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Remove package 'Xamarin.Forms'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:30:55.0250743Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:30:55.0263798Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Remove package 'Xamarin.Forms'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:30:55.0273408Z","@mt":"Removing outdated package reference: {PackageReference}","PackageReference":"Xamarin.Forms, Version=5.0.0.2083","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:30:55.0282414Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Remove package 'Xamarin.Forms'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:30:55.0390307Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.0390913Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a1ff39f5-ead7-45b7-a906-87d5c1a35399\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.0394215Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a1ff39f5-ead7-45b7-a906-87d5c1a35399\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.0395135Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.0396085Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.0427000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.0427534Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.0526786Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.0527399Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7e682242-a373-4e9a-8b77-432a159626d4\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.0530471Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7e682242-a373-4e9a-8b77-432a159626d4\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.0531318Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.0532202Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.0558799Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.0559392Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.0663592Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.0664154Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c50d900c-5982-4bc0-8e8c-fd75a17032bc\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.0667217Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c50d900c-5982-4bc0-8e8c-fd75a17032bc\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.0668050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.0668920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.0724864Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.0725656Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.0825434Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.0825985Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f41637a6-eaf1-41f6-b80a-89382f885111\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.0829103Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f41637a6-eaf1-41f6-b80a-89382f885111\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.0829975Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.0830831Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.0859437Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.0859985Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.0967057Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.0967624Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3ed86f55-5579-45d9-8482-7f238f86c563\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.0970761Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3ed86f55-5579-45d9-8482-7f238f86c563\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.0971633Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.0972523Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.0999053Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.0999625Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1100650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1101229Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6bb1e22a-054a-4a68-bc41-4ba44a01d763\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1104172Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6bb1e22a-054a-4a68-bc41-4ba44a01d763\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1105008Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1105845Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1154253Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1154921Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1266399Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1267022Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\adf502ba-3b3b-4bf5-9f08-c06ea7321fa5\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1270270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\adf502ba-3b3b-4bf5-9f08-c06ea7321fa5\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1271148Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1272024Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1300832Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1301362Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1386180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1386738Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d3d6a0d3-0af1-4216-b9e1-11826b08c239\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1389845Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d3d6a0d3-0af1-4216-b9e1-11826b08c239\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1390727Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1391580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1419005Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1419568Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1424563Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Remove package 'Microsoft.NETCore.UniversalWindowsPlatform'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:30:55.1434502Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Remove package 'Microsoft.NETCore.UniversalWindowsPlatform'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:30:55.1434800Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:30:55.1436003Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Remove package 'Microsoft.NETCore.UniversalWindowsPlatform'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:30:55.1447769Z","@mt":"Removing outdated package reference: {PackageReference}","PackageReference":"Microsoft.NETCore.UniversalWindowsPlatform, Version=6.2.12","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:30:55.1457271Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Remove package 'Microsoft.NETCore.UniversalWindowsPlatform'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:30:55.1548491Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1549097Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\493fdc77-328d-4fd1-ad44-7d15c9af2d74\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1552558Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\493fdc77-328d-4fd1-ad44-7d15c9af2d74\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1553461Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1554374Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1605019Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1605692Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1687461Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1688065Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5a35a52f-52af-4f94-8385-d6e3385e65d5\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1691336Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5a35a52f-52af-4f94-8385-d6e3385e65d5\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1692216Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1693071Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1719473Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1720001Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1805516Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1806083Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\244f581d-edce-4cae-84ef-140d949aa5f4\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1809201Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\244f581d-edce-4cae-84ef-140d949aa5f4\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1810044Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1810952Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1840406Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1840936Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1921898Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1922474Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\261f3b20-56d3-46dc-80b9-8d24aa183760\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1925569Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\261f3b20-56d3-46dc-80b9-8d24aa183760\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1926448Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1927311Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1955910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.1956451Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2043280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2043873Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3192c5f8-4197-4188-a77d-275020a42acb\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2046935Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3192c5f8-4197-4188-a77d-275020a42acb\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2047772Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2048680Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2099350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2100022Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2187702Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2188344Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2ff5bde4-c7e4-4959-abfc-573f675bfb16\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2191710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2ff5bde4-c7e4-4959-abfc-573f675bfb16\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2192616Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2193531Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2224074Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2224636Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2314534Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2315138Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\82c60e21-2452-4275-8cd6-2dec9d3faa25\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2318181Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\82c60e21-2452-4275-8cd6-2dec9d3faa25\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2319024Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2319929Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2349245Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2349844Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2438184Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2438784Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ad6047b5-6384-4eaa-959c-78ec8c451973\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2441950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ad6047b5-6384-4eaa-959c-78ec8c451973\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2442808Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2443665Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2493224Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2493887Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2499245Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Remove package 'Xamarin.Essentials'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:30:55.2514579Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Remove package 'Xamarin.Essentials'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:30:55.2514954Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:30:55.2516482Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Remove package 'Xamarin.Essentials'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:30:55.2528466Z","@mt":"Removing outdated package reference: {PackageReference}","PackageReference":"Xamarin.Essentials, Version=1.7.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:30:55.2537906Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Remove package 'Xamarin.Essentials'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:30:55.2633410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2634020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\49b0ed31-be22-473b-96cc-8d89964784dc\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2637317Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\49b0ed31-be22-473b-96cc-8d89964784dc\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2638174Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2639057Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2670399Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2671101Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2762502Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2763143Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\57bcae84-7ab7-442d-ba18-206bc58c4c79\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2766658Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\57bcae84-7ab7-442d-ba18-206bc58c4c79\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2767519Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2768381Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2794676Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2795241Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2887340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2888075Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\94b62366-830b-48e0-8e72-0a518ba5e5cf\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2891804Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\94b62366-830b-48e0-8e72-0a518ba5e5cf\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2893004Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2894540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2946510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.2947174Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3036573Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3037333Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f6184612-b43d-4615-8153-e02b0a98e062\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3040905Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f6184612-b43d-4615-8153-e02b0a98e062\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3041790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3042680Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3069631Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3070160Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3164520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3165084Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\be8f778c-ff3f-4c3e-9d71-1bb3889b100d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3168119Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\be8f778c-ff3f-4c3e-9d71-1bb3889b100d\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3168958Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3169827Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3197509Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3198058Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3290930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3291438Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3f6454e9-07a6-46ee-9ba0-f116b5453760\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3294444Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3f6454e9-07a6-46ee-9ba0-f116b5453760\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3295321Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3296142Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3322223Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3347272Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3443606Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3444166Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2cd8c7a9-7fa2-4cdc-a49a-b389a7cb1a85\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3447398Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2cd8c7a9-7fa2-4cdc-a49a-b389a7cb1a85\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3448272Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3449156Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3475299Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3475824Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3583018Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3583564Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8f159c4b-64a5-43e7-83bf-1e4d3b88d9e2\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3586607Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8f159c4b-64a5-43e7-83bf-1e4d3b88d9e2\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3587449Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3588281Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3614549Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3615084Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3620181Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Add package 'Microsoft.WindowsAppSDK'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:30:55.3635350Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Add package 'Microsoft.WindowsAppSDK'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:30:55.3635673Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:30:55.3637287Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Add package 'Microsoft.WindowsAppSDK'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:30:55.3653114Z","@mt":"Adding package reference: {PackageReference}","PackageReference":"Microsoft.WindowsAppSDK, Version=1.1.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:30:55.3662073Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Add package 'Microsoft.WindowsAppSDK'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:30:55.3780595Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3781181Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\67d89742-44e3-426d-a52d-b87f12701c3a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3784309Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\67d89742-44e3-426d-a52d-b87f12701c3a\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3785160Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3786056Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3815148Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3815707Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3927491Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3928060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b07a404b-c2b2-4864-9f1b-d5de7f9ef62d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3931095Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b07a404b-c2b2-4864-9f1b-d5de7f9ef62d\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3932052Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3932924Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3983007Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.3983703Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.4097227Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.4097876Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\027ee30c-646a-45dc-97df-c2718fbbc36e\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.4102153Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\027ee30c-646a-45dc-97df-c2718fbbc36e\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.4103327Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.4104827Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.4136537Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.4137075Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.4229610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.4230252Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0eab3ef3-2774-472d-b955-15c32e3a784c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.4233250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0eab3ef3-2774-472d-b955-15c32e3a784c\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.4234129Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.4235075Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.4261472Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.4261993Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.4361563Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.4362122Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9d81e0f0-e16f-490d-b087-96ccc197e8df\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.4365267Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9d81e0f0-e16f-490d-b087-96ccc197e8df\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.4366105Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.4366958Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.4418447Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.4419113Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.4514507Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.4515097Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2aa60e1f-09bf-4cc8-ac84-d4cc966ebff5\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.4518148Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2aa60e1f-09bf-4cc8-ac84-d4cc966ebff5\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.4519028Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.4519896Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.4546477Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.4547005Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.4644320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.4644863Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e3b9e637-2963-46a9-85b4-1e62175d8eff\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.4647878Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e3b9e637-2963-46a9-85b4-1e62175d8eff\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.4648728Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.4649581Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.4678241Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.4678786Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.4773956Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.4774474Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\bad415c9-031d-4263-a996-03d0b87bb854\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.4777463Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\bad415c9-031d-4263-a996-03d0b87bb854\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.4778346Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.4779194Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.4822687Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.4823373Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:30:55.4828545Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Add package 'Microsoft.Graphics.Win2D'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:30:55.4842287Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Add package 'Microsoft.Graphics.Win2D'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:30:55.4842602Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:30:55.4843854Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Add package 'Microsoft.Graphics.Win2D'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:30:55.4853873Z","@mt":"Adding package reference: {PackageReference}","PackageReference":"Microsoft.Graphics.Win2D, Version=1.0.0.30","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:30:55.4862837Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Add package 'Microsoft.Graphics.Win2D'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:30:55.4872280Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:30:55.4880451Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:30:55.9099204Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj: (0, 0): Project PlantLady is not compatible with net6.0-windows10.0.19041 (.NETCoreApp,Version=v6.0). Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:30:55.9099775Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets '.NETCoreApp,Version=v6.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:31:08.9376627Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:31:08.9377308Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:31:08.9377519Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:31:08.9377672Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:31:09.0195097Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:31:09.0727831Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\Microsoft Visual Studio\\2022\\Preview\\MSBuild\\Xamarin\\Android\\Xamarin.Android.Legacy.targets: (234, 5): The reference assemblies for MonoAndroid,Version=v1.0 were not found. To resolve this, install the Developer Pack (SDK/Targeting Pack) for this framework version or retarget your application. You can download .NET Framework Developer Packs at https://aka.ms/msbuild/developerpacks","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:31:09.0730851Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:31:09.1119435Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets 'Xamarin.iOS,Version=v1.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:31:09.1122441Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:31:09.1156305Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:31:13.8486179Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:31:13.8486865Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ae525cd3-f7e3-4349-9618-b63d2bebd20a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:31:13.8490075Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ae525cd3-f7e3-4349-9618-b63d2bebd20a\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:31:13.8490921Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:31:13.8618363Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.windowsappsdk/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:31:13.8651002Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.graphics.win2d/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:31:14.0343650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.windowsappsdk/index.json 172ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:31:14.0357274Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.graphics.win2d/index.json 170ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:31:14.0444149Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.windowsappsdk/1.1.0/microsoft.windowsappsdk.1.1.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:31:14.0462212Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.graphics.win2d/1.0.0.30/microsoft.graphics.win2d.1.0.0.30.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:31:14.0757733Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.windowsappsdk/1.1.0/microsoft.windowsappsdk.1.1.0.nupkg 31ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:31:14.0834546Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.graphics.win2d/1.0.0.30/microsoft.graphics.win2d.1.0.0.30.nupkg 37ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:31:54.8023577Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.windows.sdk.buildtools/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:31:55.1115899Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.windows.sdk.buildtools/index.json 309ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:31:55.1202759Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.windows.sdk.buildtools/10.0.22000.194/microsoft.windows.sdk.buildtools.10.0.22000.194.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:31:55.1481606Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.windows.sdk.buildtools/10.0.22000.194/microsoft.windows.sdk.buildtools.10.0.22000.194.nupkg 27ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:02.8732821Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:02.8735592Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of Microsoft.Windows.SDK.BuildTools 10.0.22000.194","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:02.8748576Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of Microsoft.Windows.SDK.BuildTools 10.0.22000.194","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:02.8774906Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of Microsoft.Graphics.Win2D 1.0.0.30","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:02.8789789Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of Microsoft.Graphics.Win2D 1.0.0.30","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:02.8816342Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of Microsoft.WindowsAppSDK 1.1.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:02.8830382Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of Microsoft.WindowsAppSDK 1.1.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:02.9286668Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: Microsoft.Graphics.Win2D.1.0.0.30 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:03.0129272Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: Microsoft.Windows.SDK.BuildTools.10.0.22000.194 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:03.0808474Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed Microsoft.Graphics.Win2D 1.0.0.30 from https://api.nuget.org/v3/index.json with content hash pEGf7FSx2dRWJuoaSoXk+WYkZfYwhWoJKOyyo0XLRU6V2Ul02MjxRhoxggrzGz6jVFiT7R2NdPdV8M6N1F+QfA==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:03.5364872Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: Microsoft.WindowsAppSDK.1.1.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:03.5646261Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed Microsoft.Windows.SDK.BuildTools 10.0.22000.194 from https://api.nuget.org/v3/index.json with content hash 4L0P3zqut466SIqT3VBeLTNUQTxCBDOrTRymRuROCRJKazcK7ibLz9yAO1nKWRt50ttCj39oAa2Iuz9ZTDmLlg==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.7400458Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed Microsoft.WindowsAppSDK 1.1.0 from https://api.nuget.org/v3/index.json with content hash yc3j78WEFqmARLE0USyq0xdW2IEMNsToXAMF47vJ7zfMlCqzfrKsivKrcnIUHDrsJJkruR5lwZZ35JwVKh3AHQ==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.8177070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.8177883Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.8292016Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.8292646Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b797462a-e8f6-4d43-8b69-a19a0f05b1b7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.8296076Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b797462a-e8f6-4d43-8b69-a19a0f05b1b7\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.8296987Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.8297960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.8329346Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.8329886Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.8423595Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.8424120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8c306f10-57c5-4e3a-b9e3-741102313cbe\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.8427182Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8c306f10-57c5-4e3a-b9e3-741102313cbe\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.8428090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.8429005Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.8459000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.8459574Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.8554585Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.8555101Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\638c02a4-e7d0-41f6-9a58-6c463f39ad59\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.8558429Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\638c02a4-e7d0-41f6-9a58-6c463f39ad59\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.8559322Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.8560286Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.8613892Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.8614824Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.8718124Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.8718873Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c3c8f4cc-cdc5-424a-bea6-a1ef5ba0d5a3\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.8723547Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c3c8f4cc-cdc5-424a-bea6-a1ef5ba0d5a3\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.8724929Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.8726658Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.8783383Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.8783947Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.8879811Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.8880273Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\50ebd0f6-9393-495b-b406-00f3ec7f65ec\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.8883162Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\50ebd0f6-9393-495b-b406-00f3ec7f65ec\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.8884033Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.8884919Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.8917853Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.8918548Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.9018413Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.9019067Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5dcb7b6f-129d-441e-8611-531f74ea013e\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.9022378Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5dcb7b6f-129d-441e-8611-531f74ea013e\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.9023251Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.9024186Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.9069821Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.9070498Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.9166373Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.9166933Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ca33e861-54a5-4e54-881f-39204da228f0\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.9170206Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ca33e861-54a5-4e54-881f-39204da228f0\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.9171090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.9172085Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.9201112Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.9201766Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:05.9207270Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:32:05.9224339Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:32:05.9228845Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Microsoft.WindowsAppSDK, Version=1.1.0","PackagePath":"C:\\Users\\Sweeky Satpathy\\.nuget\\packages\\Microsoft.WindowsAppSDK\\1.1.0\\Microsoft.WindowsAppSDK.1.1.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"} +{"@t":"2022-11-15T22:32:05.9264297Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Microsoft.WindowsAppSDK.1.1.0","TargetFrameworks":["net5.0-windows10.0.17763","net5.0-windows10.0.18362","UAP,Version=v10.0","UAP,Version=v10.0.17763","UAP,Version=v10.0.18362","Windows,Version=v1.0,Profile=arm64","Windows,Version=v1.0,Profile=x64","Windows,Version=v1.0,Profile=x86"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"} +{"@t":"2022-11-15T22:32:05.9266040Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Microsoft.WindowsAppSDK, Version=1.1.0","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"} +{"@t":"2022-11-15T22:32:05.9267130Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Microsoft.Graphics.Win2D, Version=1.0.0.30","PackagePath":"C:\\Users\\Sweeky Satpathy\\.nuget\\packages\\Microsoft.Graphics.Win2D\\1.0.0.30\\Microsoft.Graphics.Win2D.1.0.0.30.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"} +{"@t":"2022-11-15T22:32:05.9270150Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Microsoft.Graphics.Win2D.1.0.0.30","TargetFrameworks":[".NETCoreApp,Version=v3.0","net5.0-windows10.0.18362",".NETFramework,Version=v4.5","UAP,Version=v10.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"} +{"@t":"2022-11-15T22:32:05.9270884Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Microsoft.Graphics.Win2D, Version=1.0.0.30","TargetFramework":["net6.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"} +{"@t":"2022-11-15T22:32:05.9271133Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:32:05.9279734Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:32:05.9280034Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:32:05.9289724Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:32:05.9308982Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3/registration5-gz-semver2/microsoft.dotnet.upgradeassistant.extensions.default.analyzers/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"} +{"@t":"2022-11-15T22:32:06.2501182Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3/registration5-gz-semver2/microsoft.dotnet.upgradeassistant.extensions.default.analyzers/index.json 319ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"} +{"@t":"2022-11-15T22:32:06.2622469Z","@mt":"Reference to .NET Upgrade Assistant analyzer package ({AnalyzerPackageName}, version {AnalyzerPackageVersion}) needs to be added","AnalyzerPackageName":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers","AnalyzerPackageVersion":"0.4.355802","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.UpgradeAssistantReferenceAnalyzer"} +{"@t":"2022-11-15T22:32:06.2665997Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:32:06.2666449Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:32:06.2676220Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:32:06.2676525Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:32:06.2688620Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:32:06.2698483Z","@mt":"Adding package reference: {PackageReference}","PackageReference":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.4.355802","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:32:06.2709044Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:32:06.2720318Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:32:06.2730172Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:32:06.7259519Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj: (0, 0): Project PlantLady is not compatible with net6.0-windows10.0.19041 (.NETCoreApp,Version=v6.0). Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:32:06.7260107Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets '.NETCoreApp,Version=v6.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:32:19.8556566Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:32:19.8557290Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:32:19.8557496Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:32:19.8557664Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:32:19.9382242Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:32:19.9919324Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\Microsoft Visual Studio\\2022\\Preview\\MSBuild\\Xamarin\\Android\\Xamarin.Android.Legacy.targets: (234, 5): The reference assemblies for MonoAndroid,Version=v1.0 were not found. To resolve this, install the Developer Pack (SDK/Targeting Pack) for this framework version or retarget your application. You can download .NET Framework Developer Packs at https://aka.ms/msbuild/developerpacks","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:32:19.9922230Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:32:20.0315575Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets 'Xamarin.iOS,Version=v1.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:32:20.0319131Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:32:20.0359180Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:32:24.7620332Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.7621265Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fa7abaed-32c0-4627-b013-0364d5f4faff\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.7624285Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fa7abaed-32c0-4627-b013-0364d5f4faff\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.7625112Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.7645986Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.7911988Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.7912806Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8027061Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8027644Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a97a89ea-e372-4c07-ad12-c42fa3fbf053\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8030557Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a97a89ea-e372-4c07-ad12-c42fa3fbf053\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8031384Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8032648Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8063651Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8064137Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8174425Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8175069Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4bde81f6-7233-4867-9ab5-96868509c3a0\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8177958Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4bde81f6-7233-4867-9ab5-96868509c3a0\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8178786Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8179557Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8207971Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8208448Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8316617Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8317161Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a52f4e1a-6250-407c-b059-420caab37a00\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8319969Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a52f4e1a-6250-407c-b059-420caab37a00\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8320788Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8322072Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8353018Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8353523Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8465946Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8466694Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2857e812-a1df-4895-a839-f6f9a61ab610\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8487496Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2857e812-a1df-4895-a839-f6f9a61ab610\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8488407Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8489181Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8518207Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8518708Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8629822Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8630352Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3005917d-a76c-4b03-b1f6-1e1fb4eef2c5\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8633124Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3005917d-a76c-4b03-b1f6-1e1fb4eef2c5\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8633933Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8634770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8665572Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8666089Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8779438Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8780066Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c5c42021-f1d4-4c3c-9df2-8823a8079eb9\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8782905Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c5c42021-f1d4-4c3c-9df2-8823a8079eb9\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8783728Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8784550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8815660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8816164Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8926125Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8926671Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\954c5a4f-ed40-4b83-8962-b1216bd557c4\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8929525Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\954c5a4f-ed40-4b83-8962-b1216bd557c4\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8930346Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.8931148Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.9003063Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.9003780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.9011097Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:32:24.9033700Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:32:24.9147491Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.9148461Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\01d5d130-3b51-4ca3-b631-b3e5c1587740\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.9151679Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\01d5d130-3b51-4ca3-b631-b3e5c1587740\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.9152545Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.9172746Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.9414222Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.9414883Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:24.9442337Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3/registration5-gz-semver2/microsoft.windows.compatibility/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"} +{"@t":"2022-11-15T22:32:25.0353684Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3/registration5-gz-semver2/microsoft.windows.compatibility/index.json 91ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"} +{"@t":"2022-11-15T22:32:25.2289567Z","@mt":"NuGet package {NuGetPackage} not found in package cache","@l":"Debug","NuGetPackage":"Microsoft.Windows.Compatibility, Version=2.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"} +{"@t":"2022-11-15T22:32:25.2357603Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.windows.compatibility/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"} +{"@t":"2022-11-15T22:32:25.3185194Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.windows.compatibility/index.json 82ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"} +{"@t":"2022-11-15T22:32:25.3277588Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.windows.compatibility/2.0.0/microsoft.windows.compatibility.2.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"} +{"@t":"2022-11-15T22:32:25.3570257Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.windows.compatibility/2.0.0/microsoft.windows.compatibility.2.0.0.nupkg 29ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"} +{"@t":"2022-11-15T22:32:25.3713036Z","@mt":"Package {NuGetPackage} downloaded from feed {NuGetFeed}","@l":"Debug","NuGetPackage":"Microsoft.Windows.Compatibility, Version=2.0.0","NuGetFeed":"https://api.nuget.org/v3/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"} +{"@t":"2022-11-15T22:32:25.3717583Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Microsoft.Windows.Compatibility.2.0.0","TargetFrameworks":["Any,Version=v0.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"} +{"@t":"2022-11-15T22:32:25.3765968Z","@mt":"Adding Microsoft.Windows.Compatibility 7.0.0 helps with speeding up the upgrade process for Windows-based APIs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.WindowsCompatReferenceAnalyzer"} +{"@t":"2022-11-15T22:32:25.3810732Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:32:25.3811142Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Add package 'Microsoft.Windows.Compatibility'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:32:25.3821659Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Add package 'Microsoft.Windows.Compatibility'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:32:25.3821968Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:32:25.3833149Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Add package 'Microsoft.Windows.Compatibility'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:32:25.3860441Z","@mt":"Adding package reference: {PackageReference}","PackageReference":"Microsoft.Windows.Compatibility, Version=7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:32:25.3869770Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Add package 'Microsoft.Windows.Compatibility'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:32:25.3880987Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:32:25.3888819Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:32:25.8408359Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj: (0, 0): Project PlantLady is not compatible with net6.0-windows10.0.19041 (.NETCoreApp,Version=v6.0). Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:32:25.8408951Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets '.NETCoreApp,Version=v6.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:32:39.1650366Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:32:39.1651030Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:32:39.1651229Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:32:39.1651377Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:32:39.2484501Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:32:39.3073332Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\Microsoft Visual Studio\\2022\\Preview\\MSBuild\\Xamarin\\Android\\Xamarin.Android.Legacy.targets: (234, 5): The reference assemblies for MonoAndroid,Version=v1.0 were not found. To resolve this, install the Developer Pack (SDK/Targeting Pack) for this framework version or retarget your application. You can download .NET Framework Developer Packs at https://aka.ms/msbuild/developerpacks","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:32:39.3076521Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:32:39.3537028Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets 'Xamarin.iOS,Version=v1.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:32:39.3540781Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:32:39.3595031Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:32:44.2236992Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:44.2238008Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\441f5d71-3dca-4587-b374-d41c9187bd9d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:44.2241343Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\441f5d71-3dca-4587-b374-d41c9187bd9d\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:44.2242214Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:44.2322434Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.windows.compatibility/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:44.8725108Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.windows.compatibility/index.json 640ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:44.8809670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.windows.compatibility/7.0.0/microsoft.windows.compatibility.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:44.9381913Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.windows.compatibility/7.0.0/microsoft.windows.compatibility.7.0.0.nupkg 57ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.4713577Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.win32.registry.accesscontrol/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.4744060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.win32.systemevents/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.4763850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.codedom/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.4786442Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.componentmodel.composition.registration/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.4806274Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.componentmodel.composition/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.4833652Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.configuration.configurationmanager/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.4852910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.data.odbc/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.4875210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.data.oledb/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.4894721Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.eventlog/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.4921980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.performancecounter/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.4941906Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.directoryservices.accountmanagement/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.4964826Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.directoryservices.protocols/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.4987148Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.directoryservices/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.5012319Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.drawing.common/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.5034856Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.io.packaging/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.5057021Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.io.ports/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.5075553Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.management/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.5097702Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.reflection.context/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.5122593Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.runtime.caching/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.5143745Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.security.cryptography.pkcs/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.5172421Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.security.cryptography.protecteddata/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.5194185Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.security.cryptography.xml/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.5225204Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.security.permissions/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.5248010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.servicemodel.syndication/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.5269099Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.serviceprocess.servicecontroller/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.5289703Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.speech/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.5317247Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.text.encoding.codepages/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.5338564Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.threading.accesscontrol/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.5358806Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.data.sqlclient/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.5382279Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.servicemodel.duplex/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.5408351Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.servicemodel.http/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.5429541Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.servicemodel.nettcp/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.5452855Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.servicemodel.primitives/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.5473431Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.servicemodel.security/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.5496726Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.web.services.description/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.6952586Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.data.oledb/index.json 207ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.6960117Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.eventlog/index.json 206ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.7105325Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.eventlog/7.0.0/system.diagnostics.eventlog.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.7132085Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.io.packaging/index.json 209ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.7133260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.security.cryptography.xml/index.json 193ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.7133564Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.data.oledb/7.0.0/system.data.oledb.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.7205248Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.reflection.context/index.json 210ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.7319486Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.io.packaging/7.0.0/system.io.packaging.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.7351415Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.security.cryptography.xml/7.0.0/system.security.cryptography.xml.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.7387073Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.reflection.context/7.0.0/system.reflection.context.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.7457658Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.servicemodel.http/index.json 204ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.7653655Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.servicemodel.http/4.9.0/system.servicemodel.http.4.9.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.7675398Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.servicemodel.nettcp/index.json 224ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.7703557Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.configuration.configurationmanager/index.json 286ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.7832354Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.servicemodel.nettcp/4.9.0/system.servicemodel.nettcp.4.9.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.7872761Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.configuration.configurationmanager/7.0.0/system.configuration.configurationmanager.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.7942218Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.win32.systemevents/index.json 319ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.7942315Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.codedom/index.json 317ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.8029600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.componentmodel.composition.registration/index.json 324ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.8063952Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.componentmodel.composition/index.json 325ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.8094061Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.win32.systemevents/7.0.0/microsoft.win32.systemevents.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.8115319Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.data.odbc/index.json 326ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.8135913Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.codedom/7.0.0/system.codedom.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.8161895Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.threading.accesscontrol/index.json 282ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.8177137Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.componentmodel.composition.registration/7.0.0/system.componentmodel.composition.registration.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.8218785Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.componentmodel.composition/7.0.0/system.componentmodel.composition.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.8342578Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.data.odbc/7.0.0/system.data.odbc.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.8367330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.servicemodel.security/index.json 289ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.8370339Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.threading.accesscontrol/7.0.0/system.threading.accesscontrol.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.8493613Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.performancecounter/index.json 357ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.8500944Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.servicemodel.security/4.9.0/system.servicemodel.security.4.9.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.8519865Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.servicemodel.duplex/index.json 313ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.8542343Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.serviceprocess.servicecontroller/index.json 327ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.8624117Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.diagnostics.performancecounter/7.0.0/system.diagnostics.performancecounter.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.8648212Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.servicemodel.duplex/4.9.0/system.servicemodel.duplex.4.9.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.8653575Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.directoryservices.accountmanagement/index.json 371ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.8674080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.serviceprocess.servicecontroller/7.0.0/system.serviceprocess.servicecontroller.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.8736202Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.directoryservices.protocols/index.json 377ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.8761188Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.directoryservices.accountmanagement/7.0.0/system.directoryservices.accountmanagement.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.8796577Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.directoryservices.protocols/7.0.0/system.directoryservices.protocols.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.8895350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.io.packaging/7.0.0/system.io.packaging.7.0.0.nupkg 157ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.8896972Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.data.oledb/7.0.0/system.data.oledb.7.0.0.nupkg 176ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.8901093Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.drawing.common/index.json 388ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.8933306Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.io.ports/index.json 387ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.9038961Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.drawing.common/7.0.0/system.drawing.common.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.9060024Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.io.ports/7.0.0/system.io.ports.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.9088161Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.runtime.caching/index.json 396ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.9148696Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.runtime.caching/7.0.0/system.runtime.caching.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.9380924Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.security.permissions/index.json 415ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.9407814Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.servicemodel.syndication/index.json 415ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.9410402Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.configuration.configurationmanager/7.0.0/system.configuration.configurationmanager.7.0.0.nupkg 153ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.9474571Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.servicemodel.syndication/7.0.0/system.servicemodel.syndication.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.9479467Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.win32.systemevents/7.0.0/microsoft.win32.systemevents.7.0.0.nupkg 138ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.9532599Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.security.permissions/7.0.0/system.security.permissions.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.9573101Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.text.encoding.codepages/index.json 425ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.9657693Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.data.sqlclient/index.json 429ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.9708959Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.text.encoding.codepages/7.0.0/system.text.encoding.codepages.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.9815033Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.data.sqlclient/4.8.3/system.data.sqlclient.4.8.3.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.9863149Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.management/index.json 478ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.9892908Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.componentmodel.composition.registration/7.0.0/system.componentmodel.composition.registration.7.0.0.nupkg 171ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.9894274Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.componentmodel.composition/7.0.0/system.componentmodel.composition.7.0.0.nupkg 167ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.9896084Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.web.services.description/index.json 439ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.9949325Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.servicemodel.nettcp/4.9.0/system.servicemodel.nettcp.4.9.0.nupkg 211ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:45.9982280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.data.odbc/7.0.0/system.data.odbc.7.0.0.nupkg 163ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:46.0024057Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.management/7.0.0/system.management.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:46.0037476Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.threading.accesscontrol/7.0.0/system.threading.accesscontrol.7.0.0.nupkg 166ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:46.0044939Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.web.services.description/4.9.0/system.web.services.description.4.9.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:46.0096152Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.codedom/7.0.0/system.codedom.7.0.0.nupkg 195ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:46.0297211Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.servicemodel.security/4.9.0/system.servicemodel.security.4.9.0.nupkg 179ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:46.0313963Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.performancecounter/7.0.0/system.diagnostics.performancecounter.7.0.0.nupkg 168ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:46.0861559Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.security.cryptography.xml/7.0.0/system.security.cryptography.xml.7.0.0.nupkg 350ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:46.0905653Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.servicemodel.primitives/index.json 545ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:46.1073408Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.servicemodel.primitives/4.9.0/system.servicemodel.primitives.4.9.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:46.1090228Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.speech/index.json 579ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:46.1165453Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.diagnostics.eventlog/7.0.0/system.diagnostics.eventlog.7.0.0.nupkg 405ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:46.1274111Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.speech/7.0.0/system.speech.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:46.1384718Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.directoryservices.accountmanagement/7.0.0/system.directoryservices.accountmanagement.7.0.0.nupkg 262ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:46.1568602Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.serviceprocess.servicecontroller/7.0.0/system.serviceprocess.servicecontroller.7.0.0.nupkg 289ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:46.2171383Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.directoryservices/index.json 718ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:46.2232217Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.directoryservices/7.0.0/system.directoryservices.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:46.2346238Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.win32.registry.accesscontrol/index.json 763ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:46.2353706Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.directoryservices.protocols/7.0.0/system.directoryservices.protocols.7.0.0.nupkg 355ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:46.2461012Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.security.cryptography.pkcs/index.json 731ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:46.2530171Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.io.ports/7.0.0/system.io.ports.7.0.0.nupkg 346ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:46.2587647Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.security.cryptography.pkcs/7.0.0/system.security.cryptography.pkcs.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:46.2759591Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.security.cryptography.protecteddata/index.json 758ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:46.2895981Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.security.cryptography.protecteddata/7.0.0/system.security.cryptography.protecteddata.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:46.2912839Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.drawing.common/7.0.0/system.drawing.common.7.0.0.nupkg 387ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:46.3417081Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.servicemodel.http/4.9.0/system.servicemodel.http.4.9.0.nupkg 576ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:46.3648509Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.runtime.caching/7.0.0/system.runtime.caching.7.0.0.nupkg 449ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:46.4319959Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.text.encoding.codepages/7.0.0/system.text.encoding.codepages.7.0.0.nupkg 461ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:46.5069267Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.servicemodel.syndication/7.0.0/system.servicemodel.syndication.7.0.0.nupkg 559ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:46.5149268Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.management/7.0.0/system.management.7.0.0.nupkg 512ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:46.5820658Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.directoryservices/7.0.0/system.directoryservices.7.0.0.nupkg 358ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:46.7569332Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.servicemodel.primitives/4.9.0/system.servicemodel.primitives.4.9.0.nupkg 649ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:46.7828275Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.reflection.context/7.0.0/system.reflection.context.7.0.0.nupkg 1044ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:46.8002884Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.security.cryptography.protecteddata/7.0.0/system.security.cryptography.protecteddata.7.0.0.nupkg 510ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:46.8993405Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.win32.registry.accesscontrol/7.0.0/microsoft.win32.registry.accesscontrol.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:46.9339392Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.speech/7.0.0/system.speech.7.0.0.nupkg 806ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:46.9341821Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.win32.registry.accesscontrol/7.0.0/microsoft.win32.registry.accesscontrol.7.0.0.nupkg 34ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:47.0292793Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.private.servicemodel/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:47.0454480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.web.services.description/4.9.0/system.web.services.description.4.9.0.nupkg 1040ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:47.1202123Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.private.servicemodel/index.json 90ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:47.1304199Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.private.servicemodel/4.9.0/system.private.servicemodel.4.9.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:47.1632347Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.servicemodel.duplex/4.9.0/system.servicemodel.duplex.4.9.0.nupkg 1298ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:47.1671379Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.private.servicemodel/4.9.0/system.private.servicemodel.4.9.0.nupkg 36ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:47.1969152Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.security.cryptography.pkcs/7.0.0/system.security.cryptography.pkcs.7.0.0.nupkg 938ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:47.3709770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.data.sqlclient/4.8.3/system.data.sqlclient.4.8.3.nupkg 1389ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:47.9264802Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.security.permissions/7.0.0/system.security.permissions.7.0.0.nupkg 1973ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:50.1492288Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.native.system.io.ports/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:50.2301713Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.native.system.io.ports/index.json 80ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:50.2519067Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.native.system.io.ports/7.0.0/runtime.native.system.io.ports.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:50.2966228Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.native.system.io.ports/7.0.0/runtime.native.system.io.ports.7.0.0.nupkg 44ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:50.5706094Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.linux-arm.runtime.native.system.io.ports/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:50.5732591Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.linux-arm64.runtime.native.system.io.ports/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:50.5757142Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.linux-x64.runtime.native.system.io.ports/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:50.5784574Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.osx-arm64.runtime.native.system.io.ports/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:50.5806670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.osx-x64.runtime.native.system.io.ports/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:50.6709601Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.osx-arm64.runtime.native.system.io.ports/index.json 92ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:50.6709660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.linux-arm.runtime.native.system.io.ports/index.json 100ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:50.6712312Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.linux-x64.runtime.native.system.io.ports/index.json 95ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:50.6712643Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.osx-x64.runtime.native.system.io.ports/index.json 90ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:50.6833621Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.linux-arm.runtime.native.system.io.ports/7.0.0/runtime.linux-arm.runtime.native.system.io.ports.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:50.6855775Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.osx-arm64.runtime.native.system.io.ports/7.0.0/runtime.osx-arm64.runtime.native.system.io.ports.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:50.6888380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.osx-x64.runtime.native.system.io.ports/7.0.0/runtime.osx-x64.runtime.native.system.io.ports.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:50.6912103Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.linux-x64.runtime.native.system.io.ports/7.0.0/runtime.linux-x64.runtime.native.system.io.ports.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:50.7213725Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.linux-arm.runtime.native.system.io.ports/7.0.0/runtime.linux-arm.runtime.native.system.io.ports.7.0.0.nupkg 37ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:50.7232498Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.osx-arm64.runtime.native.system.io.ports/7.0.0/runtime.osx-arm64.runtime.native.system.io.ports.7.0.0.nupkg 37ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:50.7241126Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.osx-x64.runtime.native.system.io.ports/7.0.0/runtime.osx-x64.runtime.native.system.io.ports.7.0.0.nupkg 35ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:50.7261347Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.linux-x64.runtime.native.system.io.ports/7.0.0/runtime.linux-x64.runtime.native.system.io.ports.7.0.0.nupkg 34ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:50.8715960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.linux-arm64.runtime.native.system.io.ports/index.json 298ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:50.8786138Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.linux-arm64.runtime.native.system.io.ports/7.0.0/runtime.linux-arm64.runtime.native.system.io.ports.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:50.9273686Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.linux-arm64.runtime.native.system.io.ports/7.0.0/runtime.linux-arm64.runtime.native.system.io.ports.7.0.0.nupkg 48ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:52.1367782Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.windows.extensions/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:52.2219235Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.windows.extensions/index.json 85ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:52.2285170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.windows.extensions/7.0.0/system.windows.extensions.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:52.2554727Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.windows.extensions/7.0.0/system.windows.extensions.7.0.0.nupkg 26ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:52.6795945Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.formats.asn1/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:52.7605898Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.formats.asn1/index.json 80ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:52.7784432Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.formats.asn1/7.0.0/system.formats.asn1.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:52.8083008Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.formats.asn1/7.0.0/system.formats.asn1.7.0.0.nupkg 29ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:54.0775295Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.bcl.asyncinterfaces/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:54.0804684Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.objectpool/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:54.0843404Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.reflection.dispatchproxy/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:54.0873309Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.security.principal.windows/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:54.1633846Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.bcl.asyncinterfaces/index.json 85ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:54.1640107Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.objectpool/index.json 83ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:54.1674440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.reflection.dispatchproxy/index.json 83ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:54.1697958Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.security.principal.windows/index.json 82ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:54.1746129Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.bcl.asyncinterfaces/5.0.0/microsoft.bcl.asyncinterfaces.5.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:54.1765087Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.extensions.objectpool/5.0.10/microsoft.extensions.objectpool.5.0.10.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:54.1789343Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.reflection.dispatchproxy/4.7.1/system.reflection.dispatchproxy.4.7.1.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:54.1808117Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.security.principal.windows/5.0.0/system.security.principal.windows.5.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:54.2049713Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.bcl.asyncinterfaces/5.0.0/microsoft.bcl.asyncinterfaces.5.0.0.nupkg 30ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:54.2079346Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.extensions.objectpool/5.0.10/microsoft.extensions.objectpool.5.0.10.nupkg 31ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:54.2127301Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.reflection.dispatchproxy/4.7.1/system.reflection.dispatchproxy.4.7.1.nupkg 33ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:54.2152173Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.security.principal.windows/5.0.0/system.security.principal.windows.5.0.0.nupkg 34ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:56.2535602Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.win32.registry/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:56.2580756Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.native.system.data.sqlclient.sni/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:56.2624009Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.security.principal.windows/4.7.0/system.security.principal.windows.4.7.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:56.2925528Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.security.principal.windows/4.7.0/system.security.principal.windows.4.7.0.nupkg 29ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:56.3414572Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.win32.registry/index.json 87ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:56.3425557Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.native.system.data.sqlclient.sni/index.json 84ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:56.3719454Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.native.system.data.sqlclient.sni/4.7.0/runtime.native.system.data.sqlclient.sni.4.7.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:56.3766637Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.win32.registry/4.7.0/microsoft.win32.registry.4.7.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:56.4006631Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.native.system.data.sqlclient.sni/4.7.0/runtime.native.system.data.sqlclient.sni.4.7.0.nupkg 28ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:56.4080052Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.win32.registry/4.7.0/microsoft.win32.registry.4.7.0.nupkg 31ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:56.4783037Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.win-arm64.runtime.native.system.data.sqlclient.sni/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:56.4836504Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.win-x64.runtime.native.system.data.sqlclient.sni/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:56.4902489Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.win-x86.runtime.native.system.data.sqlclient.sni/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:56.5663321Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.win-x64.runtime.native.system.data.sqlclient.sni/index.json 82ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:56.5666039Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.win-arm64.runtime.native.system.data.sqlclient.sni/index.json 88ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:56.5705025Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.win-x86.runtime.native.system.data.sqlclient.sni/index.json 80ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:56.5759413Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0/runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:56.5780793Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0/runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:56.5804150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0/runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:56.6029068Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0/runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg 26ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:56.6077393Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0/runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg 29ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:56.6164287Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0/runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg 35ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:56.7676539Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.security.accesscontrol/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:56.8550213Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.security.accesscontrol/index.json 87ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:56.8734414Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/system.security.accesscontrol/4.7.0/system.security.accesscontrol.4.7.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:56.9047366Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/system.security.accesscontrol/4.7.0/system.security.accesscontrol.4.7.0.nupkg 31ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.5651305Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.netcore.platforms/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.6519197Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.netcore.platforms/index.json 86ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.6766842Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.netcore.platforms/3.1.0/microsoft.netcore.platforms.3.1.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.7073493Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.netcore.platforms/3.1.0/microsoft.netcore.platforms.3.1.0.nupkg 30ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.7394496Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.7461057Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of Microsoft.NETCore.Platforms 3.1.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.7501703Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of Microsoft.NETCore.Platforms 3.1.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.7567951Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Security.Principal.Windows 5.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.7606538Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Security.Principal.Windows 5.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.7694304Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Reflection.DispatchProxy 4.7.1","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.7740875Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Reflection.DispatchProxy 4.7.1","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.7823997Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of Microsoft.Extensions.ObjectPool 5.0.10","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.7864321Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of Microsoft.Extensions.ObjectPool 5.0.10","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.7948871Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of Microsoft.Bcl.AsyncInterfaces 5.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.7978009Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: Microsoft.NETCore.Platforms.3.1.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.7992242Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of Microsoft.Bcl.AsyncInterfaces 5.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.8086076Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of runtime.win-x86.runtime.native.System.Data.SqlClient.sni 4.4.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.8130585Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of runtime.win-x86.runtime.native.System.Data.SqlClient.sni 4.4.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.8222704Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of runtime.win-x64.runtime.native.System.Data.SqlClient.sni 4.4.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.8266703Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of runtime.win-x64.runtime.native.System.Data.SqlClient.sni 4.4.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.8367049Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of runtime.win-arm64.runtime.native.System.Data.SqlClient.sni 4.4.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.8569539Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of runtime.win-arm64.runtime.native.System.Data.SqlClient.sni 4.4.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.8639445Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed Microsoft.NETCore.Platforms 3.1.0 from https://api.nuget.org/v3/index.json with content hash z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.8652560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of Microsoft.Windows.Compatibility 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.8688659Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Security.AccessControl 4.7.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.8711907Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of Microsoft.Windows.Compatibility 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.8713397Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Security.Principal.Windows.5.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.8781305Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Security.AccessControl 4.7.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.8827469Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Reflection.DispatchProxy.4.7.1 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.8894495Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of runtime.osx-x64.runtime.native.System.IO.Ports 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.8906844Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: Microsoft.Bcl.AsyncInterfaces.5.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.8935881Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: Microsoft.Extensions.ObjectPool.5.0.10 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.8947621Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of runtime.osx-x64.runtime.native.System.IO.Ports 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.9103037Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of runtime.osx-arm64.runtime.native.System.IO.Ports 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.9172835Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of runtime.osx-arm64.runtime.native.System.IO.Ports 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.9267806Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of runtime.linux-x64.runtime.native.System.IO.Ports 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.9322045Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of runtime.linux-x64.runtime.native.System.IO.Ports 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.9385403Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of runtime.linux-arm64.runtime.native.System.IO.Ports 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.9403954Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of runtime.linux-arm64.runtime.native.System.IO.Ports 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.9449050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of runtime.linux-arm.runtime.native.System.IO.Ports 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.9469547Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of runtime.linux-arm.runtime.native.System.IO.Ports 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.9491112Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: runtime.win-arm64.runtime.native.System.Data.SqlClient.sni.4.4.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.9491568Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: runtime.win-x86.runtime.native.System.Data.SqlClient.sni.4.4.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.9492138Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: runtime.win-x64.runtime.native.System.Data.SqlClient.sni.4.4.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.9509284Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Private.ServiceModel 4.9.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.9537762Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed Microsoft.Extensions.ObjectPool 5.0.10 from https://api.nuget.org/v3/index.json with content hash pp9tbGqIhdEXL6Q1yJl+zevAJSq4BsxqhS1GXzBvEsEz9DDNu9GLNzgUy2xyFc4YjB4m4Ff2YEWTnvQvVYdkvQ==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.9546336Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Private.ServiceModel 4.9.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.9546953Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of Microsoft.Win32.Registry.AccessControl 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.9575491Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed Microsoft.Bcl.AsyncInterfaces 5.0.0 from https://api.nuget.org/v3/index.json with content hash W8DPQjkMScOMTtJbPwmPyj9c3zYSFGawDW3jwlBOOsnY+EzZFLgNQ/UMkK35JmkNOVPdCyPr2Tw7Vv9N+KA3ZQ==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.9575613Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of Microsoft.Win32.Registry.AccessControl 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.9579634Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of Microsoft.Win32.SystemEvents 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.9643129Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Security.AccessControl.4.7.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.9647127Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Security.Principal.Windows 4.7.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.9654664Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of Microsoft.Win32.SystemEvents 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.9665990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Security.Principal.Windows 4.7.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.9849661Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed runtime.win-x64.runtime.native.System.Data.SqlClient.sni 4.4.0 from https://api.nuget.org/v3/index.json with content hash 38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.9857985Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed runtime.win-arm64.runtime.native.System.Data.SqlClient.sni 4.4.0 from https://api.nuget.org/v3/index.json with content hash LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.9864524Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.ComponentModel.Composition.Registration 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.9874308Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed runtime.win-x86.runtime.native.System.Data.SqlClient.sni 4.4.0 from https://api.nuget.org/v3/index.json with content hash YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.9875765Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.CodeDom 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.9881093Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.ComponentModel.Composition 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.9889257Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.ComponentModel.Composition.Registration 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:57.9910029Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.CodeDom 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:58.0082486Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Security.Principal.Windows.4.7.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:58.0322480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.ComponentModel.Composition 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:58.0481789Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: Microsoft.Win32.SystemEvents.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:58.0484941Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: runtime.osx-arm64.runtime.native.System.IO.Ports.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:58.0501583Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: Microsoft.Windows.Compatibility.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:58.0523984Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: runtime.osx-x64.runtime.native.System.IO.Ports.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:58.0606068Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: Microsoft.Win32.Registry.AccessControl.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:58.0997778Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.ComponentModel.Composition.Registration.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:58.1001763Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed Microsoft.Windows.Compatibility 7.0.0 from https://api.nuget.org/v3/index.json with content hash bjKgKvrTOLaP/f++yf0FoZcF1H3DHrs/qOr6X5OJTLUqwPtJiz3mbpcbhWCjET+5WpocAK2hi3ia4WFb4xyzQg==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:58.1009327Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Configuration.ConfigurationManager 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:58.1012103Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.CodeDom.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:58.1032808Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Configuration.ConfigurationManager 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:58.1038534Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.ComponentModel.Composition.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:58.1111139Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed runtime.osx-x64.runtime.native.System.IO.Ports 7.0.0 from https://api.nuget.org/v3/index.json with content hash X4LrHEfke/z9+z+iuVr35NlkhdZldY8JGNMYUN+sfPK/U/6TcE+vP44I0Yv0ir1v0bqIzq3v6Qdv1c1vmp8s4g==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:58.1115016Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Data.Odbc 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:58.1136627Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed runtime.osx-arm64.runtime.native.System.IO.Ports 7.0.0 from https://api.nuget.org/v3/index.json with content hash jFwh4sKSXZ7al5XrItEO4GdGWa6XNxvNx+LhEHjrSzOwawO1znwJ+Dy+VjnrkySX9Qi4bnHNLoiqOXbqMuka4g==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:58.1140815Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Data.OleDb 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:58.1149072Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Data.Odbc 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:58.1166906Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Data.OleDb 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:58.1378734Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Reflection.DispatchProxy 4.7.1 from https://api.nuget.org/v3/index.json with content hash C1sMLwIG6ILQ2bmOT4gh62V6oJlyF4BlHcVMrOoor49p0Ji2tA8QAoqyMcIhAdH6OHKJ8m7BU+r4LK2CUEOKqw==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:58.1383233Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Diagnostics.EventLog 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:58.1420029Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Diagnostics.EventLog 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:58.1495129Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Configuration.ConfigurationManager.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:32:58.1602813Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed Microsoft.Win32.SystemEvents 7.0.0 from https://api.nuget.org/v3/index.json with content hash 2nXPrhdAyAzir0gLl8Yy8S5Mnm/uBSQQA7jEsILOS1MTyS7DbmV1NgViMtvV1sfCD1ebITpNwb1NIinKeJgUVQ==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:47.8763723Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Diagnostics.PerformanceCounter 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:47.8802486Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Data.OleDb.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:47.8809981Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Data.Odbc.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:47.9086249Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.ComponentModel.Composition.Registration 7.0.0 from https://api.nuget.org/v3/index.json with content hash yy/xYOznnc7Hfg2/LeVqAMlJGv1v7b1ILxFShzx5PWUv53PwU0MaKPG8Dh9DC3gxayzw44UVuQJImhw7LtMKlw==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:47.9098626Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.DirectoryServices.AccountManagement 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:47.9300021Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed Microsoft.Win32.Registry.AccessControl 7.0.0 from https://api.nuget.org/v3/index.json with content hash JwM65WXVca58WzqY/Rpz7FGyHbN/SMdyr/3EI2CwPIYkB55EIRJUdPQJwO64x3ntOwPQoqCATKuDYA9K7Np5Ww==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:47.9539291Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.CodeDom 7.0.0 from https://api.nuget.org/v3/index.json with content hash GLltyqEsE5/3IE+zYRP5sNa1l44qKl9v+bfdMcwg+M9qnQf47wK3H0SUR/T+3N4JEQXF3vV4CSuuo0rsg+nq2A==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:47.9541846Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.DirectoryServices.Protocols 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:47.9569389Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.DirectoryServices 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:47.9574090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Diagnostics.EventLog.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:47.9582106Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Diagnostics.PerformanceCounter 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:47.9604499Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.DirectoryServices.AccountManagement 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:47.9624355Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.DirectoryServices.Protocols 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:47.9641811Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.DirectoryServices 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:47.9776135Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Security.Principal.Windows 5.0.0 from https://api.nuget.org/v3/index.json with content hash t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:47.9780012Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Drawing.Common 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:47.9799711Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Drawing.Common 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:47.9986350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.ComponentModel.Composition 7.0.0 from https://api.nuget.org/v3/index.json with content hash orv0h38ZVPCPo/FW0LGv8/TigXwX8cIwXeQcaNYhikkqELDm8sUFLMcof/Sjcq5EvYCm5NA7MV3hG4u75H44UQ==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:47.9989997Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.IO.Packaging 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.0013845Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.IO.Packaging 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.0181673Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.DirectoryServices.Protocols.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.0218845Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.DirectoryServices.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.0299328Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Drawing.Common.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.0390313Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: runtime.linux-x64.runtime.native.System.IO.Ports.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.0444107Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: runtime.linux-arm64.runtime.native.System.IO.Ports.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.0776296Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Diagnostics.PerformanceCounter.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.1111925Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.IO.Packaging.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.1226234Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: runtime.linux-arm.runtime.native.System.IO.Ports.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.1250960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.DirectoryServices.AccountManagement.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.2191688Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Private.ServiceModel.4.9.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.2297664Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed runtime.linux-arm64.runtime.native.System.IO.Ports 7.0.0 from https://api.nuget.org/v3/index.json with content hash 5VCyRCtCIYU8FR/W8oo7ouFuJ8tmAg9ddsuXhfCKZfZrbaVZSKxkmNBa6fxkfYPueD0jQfOvwFBmE5c6zalCSw==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.2307304Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.IO.Ports 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.2339736Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Data.OleDb 7.0.0 from https://api.nuget.org/v3/index.json with content hash bhAs+5X5acgg3zQ6N4HqxqfwwmqWJzgt54BC8iwygcqa2jktxDFzxwN83GNvqgoTcTs2tenDS/jmhC+AQsmcyg==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.2343559Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Management 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.2346305Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.IO.Ports 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.2586533Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Management 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.2858287Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.DirectoryServices 7.0.0 from https://api.nuget.org/v3/index.json with content hash WZnDWTwH9RuTWJzljUdZuBu8D3f9dSotW5UL+X+aOqXOSwdqPHhymN8mKSvQjUaSq6gq7JvbWooeRjFpjXwM4A==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.2862976Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Reflection.Context 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.2894927Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Reflection.Context 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.3114980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed runtime.linux-arm.runtime.native.System.IO.Ports 7.0.0 from https://api.nuget.org/v3/index.json with content hash CBvgRaF+M0xGLDv2Geb/0v0LEADheH8aK72GRAUJdnqnJVsQO60ki1XO8M3keEhnjm+T5NvLm41pNXAVYAPiSg==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.3120688Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Runtime.Caching 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.3324759Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Runtime.Caching 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.3374813Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed runtime.linux-x64.runtime.native.System.IO.Ports 7.0.0 from https://api.nuget.org/v3/index.json with content hash DV9dWDUs23OoZqMWl5IhLr3D+b9koDiSHQxFKdYgWnQbnthv8c/yDjrlrI8nMrDc71RAKCO8jlUojzuPMX04gg==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.3385845Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Security.Cryptography.Pkcs 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.3492945Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Security.Cryptography.Pkcs 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.3897279Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Security.AccessControl 4.7.0 from https://api.nuget.org/v3/index.json with content hash JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.3901057Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Security.Cryptography.ProtectedData 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.3918954Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Drawing.Common 7.0.0 from https://api.nuget.org/v3/index.json with content hash KIX+oBU38pxkKPxvLcLfIkOV5Ien8ReN78wro7OF5/erwcmortzeFx+iBswlh2Vz6gVne0khocQudGwaO1Ey6A==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.3922905Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Security.Cryptography.Xml 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.4177555Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Security.Cryptography.Pkcs.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.4177646Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Management.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.4288120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Security.Cryptography.Xml 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.4372177Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Security.Cryptography.ProtectedData 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.4553848Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Diagnostics.PerformanceCounter 7.0.0 from https://api.nuget.org/v3/index.json with content hash L+zIMEaXp1vA4wZk1KLMpk6tvU0xy94R0IfmhkmTWeC4KwShsmAfbg5I19LgjsCTYp6GVdXZ2aHluVWL0QqBdA==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.4557673Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Security.Permissions 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.4605479Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Security.Permissions 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.4747810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Security.Cryptography.ProtectedData.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.5131457Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.IO.Ports.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.5324243Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Diagnostics.EventLog 7.0.0 from https://api.nuget.org/v3/index.json with content hash eUDP47obqQm3SFJfP6z+Fx2nJ4KKTQbXB4Q9Uesnzw9SbYdhjyoGXuvDn/gEmFY6N5Z3bFFbpAQGA7m6hrYJCw==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.5327906Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.ServiceModel.Syndication 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.5345412Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.ServiceModel.Syndication 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.5596502Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Security.Permissions.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.5895488Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Security.Principal.Windows 4.7.0 from https://api.nuget.org/v3/index.json with content hash ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.5903113Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of runtime.native.System.Data.SqlClient.sni 4.7.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.5929587Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of runtime.native.System.Data.SqlClient.sni 4.7.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.6007714Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Data.Odbc 7.0.0 from https://api.nuget.org/v3/index.json with content hash siwu7NoCsfHa9bfw2a2wSeTt2c/rhk3X8I28nJln1dlxdW3KqhRp0aW87yH1XkCo9h8zO1qcIfdTHO7YvvWLEA==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.6012426Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.ServiceProcess.ServiceController 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.6030450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.ServiceProcess.ServiceController 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.6420658Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.ServiceModel.Syndication.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.6578187Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Security.Cryptography.Xml.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.6691703Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.ServiceProcess.ServiceController.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.6810518Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: runtime.native.System.Data.SqlClient.sni.4.7.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.7830654Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.IO.Packaging 7.0.0 from https://api.nuget.org/v3/index.json with content hash +j5ezLP7785/pd4taKQhXAWsymsIW2nTnE/U3/jpGZzcJx5lip6qkj6UrxSE7ZYZfL0GaLuymwGLqwJV/c7O7Q==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.7838497Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Speech 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.7907902Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Runtime.Caching.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.7979149Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.DirectoryServices.AccountManagement 7.0.0 from https://api.nuget.org/v3/index.json with content hash qMpVgR5+XactuWzpqsiif++lnTzfDESbQv4UYFZpgdRvFCFIi4JgufOITCDlu+x2vEmwYOVbwrR1N365dDJRLg==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.7988438Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Text.Encoding.CodePages 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.8069489Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed runtime.native.System.Data.SqlClient.sni 4.7.0 from https://api.nuget.org/v3/index.json with content hash 9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.8073999Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of Microsoft.Win32.Registry 4.7.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.8452156Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Reflection.Context.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.8666321Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Security.Cryptography.ProtectedData 7.0.0 from https://api.nuget.org/v3/index.json with content hash xSPiLNlHT6wAHtugASbKAJwV5GVqQK351crnILAucUioFqqieDN79evO1rku1ckt/GfjIn+b17UaSskoY03JuA==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.8670514Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Threading.AccessControl 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.8891320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.ServiceProcess.ServiceController 7.0.0 from https://api.nuget.org/v3/index.json with content hash 7W5e7z2LSsxEvnix0F4pQuo22l46vx69+VHZyN9vtMFTtB2kWInimBmhbFXKIv1hK2O2D4hGnBn4bAZGzse8PQ==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:48.8895165Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Data.SqlClient 4.8.3","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.0194082Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of Microsoft.Win32.Registry 4.7.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.0232704Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Threading.AccessControl 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.0233055Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Data.SqlClient 4.8.3","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.0233926Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Speech 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.0346399Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Security.Cryptography.Xml 7.0.0 from https://api.nuget.org/v3/index.json with content hash LHc5PUypYGAMNf/2DzCxOXREKamwCtdUtxb/WpCnHngORVYZbUdSMnm1PcKvEvzKUTKSC0CL6aVAywzbEEeNQg==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.0365345Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.ServiceModel.Duplex 4.9.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.0710779Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: Microsoft.Win32.Registry.4.7.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.1693507Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Configuration.ConfigurationManager 7.0.0 from https://api.nuget.org/v3/index.json with content hash WvRUdlL1lB0dTRZSs5XcQOd5q9MYNk90GkbmRmiCvRHThWiojkpGqWdmEDJdXyHbxG/BhE5hmVbMfRLXW9FJVA==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.1700771Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Text.Encoding.CodePages 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.1702286Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.ServiceModel.Duplex 4.9.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.1752290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.ServiceModel.Http 4.9.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.1761206Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Management 7.0.0 from https://api.nuget.org/v3/index.json with content hash A4jed4QUviDOm7fJNKAJObEAEkEUXmkGL/w0iyCYTzrl1rezTj8LGFHfsVst4Vb9JwFcTpboiDrvdST48avBpw==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.1766510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.ServiceModel.NetTcp 4.9.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.1785526Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.ServiceModel.Http 4.9.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.1937402Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.ServiceModel.NetTcp 4.9.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.2062956Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Threading.AccessControl.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.2070573Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.ServiceModel.Syndication 7.0.0 from https://api.nuget.org/v3/index.json with content hash V3q1Jr3KWo+i201/vUUPfg83rjJLhL5+ROh16PtPhaUJRHwoEBoGWtg0r6pFBRPaDqNY6hXvNgHktDj0gvMEpA==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.2246144Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Security.Permissions 7.0.0 from https://api.nuget.org/v3/index.json with content hash Vmp0iRmCEno9BWiskOW5pxJ3d9n+jUqKxvX4GhLwFhnQaySZmBN2FuC0N5gjFHgyFMUjC5sfIJ8KZfoJwkcMmA==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.2559751Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.ServiceModel.Duplex.4.9.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.2978787Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Runtime.Caching 7.0.0 from https://api.nuget.org/v3/index.json with content hash M0riW7Zgxca3Elp1iZVhzH7PWWT5bPSrdMFGCAGoH1n9YLuXOYE78ryui051Icf3swWWa8feBRoSxOCYwgMy8w==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.3353071Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Speech.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.3384522Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.ServiceModel.Primitives 4.9.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.3387648Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.ServiceModel.Security 4.9.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.3458664Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Security.Cryptography.Pkcs 7.0.0 from https://api.nuget.org/v3/index.json with content hash mjUbEXkR6DYRef6dnEYKdfec9otcAkibExL+1f9hmbGlWIUyaCnS3Y3oGZEet38waXmuY1ORE8vgv4sgD5nMYg==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.3463332Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Web.Services.Description 4.9.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.3538988Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Data.SqlClient.4.8.3 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.3901199Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.ServiceModel.NetTcp.4.9.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.4233626Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.IO.Ports 7.0.0 from https://api.nuget.org/v3/index.json with content hash 0nWQjM5IofaIGpvkifN+LLuYwBG6BHlpmphLhhOJepcW12G8qToGuNDRgBzeTVBZzp33wVsESSZ8hUOCfq+8QA==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.4259827Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.ServiceModel.Primitives 4.9.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.4323818Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.ServiceModel.Security 4.9.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.4343532Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of runtime.native.System.IO.Ports 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.4349560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Threading.AccessControl 7.0.0 from https://api.nuget.org/v3/index.json with content hash J3pA1tD7H8ZKzKczlAYgMG0ZO227YsmoyyOh/YttwtomokMhNbPRwlf5h37a+xQE420nGVuvwsFoV5YBUY+TpA==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.4353217Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Formats.Asn1 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.4367011Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Web.Services.Description 4.9.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.4408292Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of System.Windows.Extensions 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.4419775Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of runtime.native.System.IO.Ports 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.4446752Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Formats.Asn1 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.4492819Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.DirectoryServices.Protocols 7.0.0 from https://api.nuget.org/v3/index.json with content hash QNC4ab+Gc3p3uLixavxxD0h5FOxrs2cT3hez4DSMckBU8lgREjrEB5a8reJypkSVlhFyUQ5YfpMJODdeSCYp2g==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.4552419Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of System.Windows.Extensions 7.0.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.4616466Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Text.Encoding.CodePages.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.4800349Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.ServiceModel.Security.4.9.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.4868510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.ServiceModel.Http.4.9.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.5128805Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Web.Services.Description.4.9.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.5191458Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.ServiceModel.Primitives.4.9.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.5550313Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.ServiceModel.Duplex 4.9.0 from https://api.nuget.org/v3/index.json with content hash Yb8MFiJxBBtm2JnfS/5SxYzm2HqkEmHu5xeaVIHXy83sNpty9wc30JifH2xgda821D6nr1UctbwbdZqN4LBUKQ==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.6338588Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: runtime.native.System.IO.Ports.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.6606491Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Reflection.Context 7.0.0 from https://api.nuget.org/v3/index.json with content hash rVf4vEyGQphXTITF39uXlgTcp8Ekcu2aNwxyVLU7fDyNOk0W+/PPpj9PoC2cFL4wgJZJltiss5eQptE2C4f1Sw==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.6607948Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Speech 7.0.0 from https://api.nuget.org/v3/index.json with content hash 7E0uB92Cx2sXR67HW9rMKJqDACdLuz9t3I3OwZUFDzAgwKXWuY6CYeRT/NiypHcyZO2be9+0H0w0M6fn7HQtgQ==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.6636211Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed runtime.native.System.IO.Ports 7.0.0 from https://api.nuget.org/v3/index.json with content hash L4Ivegqc3B0Fee7VifFy2JST9nndm+uvJ0viLIZUaImDfnr+JmRin9Tbqd56KuMtm0eVxHpNOWZBPtKrA/1h5Q==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.6806037Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed Microsoft.Win32.Registry 4.7.0 from https://api.nuget.org/v3/index.json with content hash KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.7039645Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Formats.Asn1.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.7216383Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"PackageSignatureVerificationLog: PackageIdentity: System.Windows.Extensions.7.0.0 Source: https://api.nuget.org/v3/index.json PackageSignatureValidity: True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.7378545Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Private.ServiceModel 4.9.0 from https://api.nuget.org/v3/index.json with content hash d3RjkrtpjUQ63PzFmm/SZ4aOXeJNP+8YW5QeP0lCJy8iX4xlHdlNLWTF9sRn9SmrFTK757kQXT9Op/R4l858uw==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.7642872Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.ServiceModel.Security 4.9.0 from https://api.nuget.org/v3/index.json with content hash iurpbSmPgotHps94VQ6acvL6hU2gjiuBmQI7PwLLN76jsbSpUcahT0PglccKIAwoMujATk/LWtAapBHpwCFn2g==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.7745295Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.ServiceModel.Primitives 4.9.0 from https://api.nuget.org/v3/index.json with content hash LTFPVdS8Nf76xg/wRZkDa+2Q+GnjTOmwkTlwuoetwX37mAfYnGkf7p8ydhpDwVmomNljpUOhUUGxfjQyd5YcOg==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.7875744Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Text.Encoding.CodePages 7.0.0 from https://api.nuget.org/v3/index.json with content hash LSyCblMpvOe0N3E+8e0skHcrIhgV2huaNcjUUEa8hRtgEAm36aGkRoC8Jxlb6Ra6GSfF29ftduPNywin8XolzQ==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.7972765Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Formats.Asn1 7.0.0 from https://api.nuget.org/v3/index.json with content hash +nfpV0afLmvJW8+pLlHxRjz3oZJw4fkyU9MMEaMhCsHi/SN9bGF9q79ROubDiwTiCHezmK0uCWkPP7tGFP/4yg==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.8102179Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.ServiceModel.NetTcp 4.9.0 from https://api.nuget.org/v3/index.json with content hash nXgnnkrZERUF/KwmoLwZPkc7fqgiq94DXkmUZBvDNh/LdZquDvjy2NbhJLElpApOa5x8zEoQoBZyJ2PqNC39qg==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.8128574Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Windows.Extensions 7.0.0 from https://api.nuget.org/v3/index.json with content hash bR4qdCmssMMbo9Fatci49An5B1UaVJZHKNq70PRgzoLYIlitb8Tj7ns/Xt5Pz1CkERiTjcVBDU2y1AVrPBYkaw==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.8189979Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Web.Services.Description 4.9.0 from https://api.nuget.org/v3/index.json with content hash d20B3upsWddwSG5xF3eQLs0cAV3tXDsBNqP4kh02ylfgZwqfpf4f/9KiZVIGIoxULt2cKqxWs+U4AdNAJ7L8cQ==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:49.8460766Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.ServiceModel.Http 4.9.0 from https://api.nuget.org/v3/index.json with content hash Z+s3RkLNzJ31fDXAjqXdXp67FqsNG4V3Md3r7FOrzMkHmg61gY8faEfTFPBLxU9tax1HPWt6IHVAquXBKySJaw==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:50.0733321Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed System.Data.SqlClient 4.8.3 from https://api.nuget.org/v3/index.json with content hash yERfVLXAY0QbylAgaGLByYN0hFxX28aeEQ0hUgJO+Ntn1AfmWl5HHUoYJA0Yl9HhIUUJHVaS/Sw/RLZr5aaC+A==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.0745968Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.0750802Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.0956937Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.0957955Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d4ec7094-c17d-4fa8-90c3-bbfee37b3041\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.0962277Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d4ec7094-c17d-4fa8-90c3-bbfee37b3041\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.0963608Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.0975195Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.1210799Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.1218382Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.1379052Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.1380405Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6a4e4975-f199-4e76-8b89-822d89961458\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.1386270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6a4e4975-f199-4e76-8b89-822d89961458\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.1387690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.1398676Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.1618672Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.1622168Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.1755726Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.1756661Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5bad50fb-808f-4560-bc57-d177cf8f09a8\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.1761417Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5bad50fb-808f-4560-bc57-d177cf8f09a8\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.1762567Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.1772831Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.1996737Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.2003013Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.2139357Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.2140755Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\dd330c98-f109-4830-8d70-8513bb3f2481\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.2147650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\dd330c98-f109-4830-8d70-8513bb3f2481\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.2149279Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.2161570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.2422660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.2427025Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.2570850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.2573335Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\43ab7ef5-d403-432f-b3ce-fabca1c5d3ff\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.2578610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\43ab7ef5-d403-432f-b3ce-fabca1c5d3ff\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.2579432Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.2585788Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.2811101Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.2814547Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.2964149Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.2965094Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\31b61e4a-40c1-40bf-b5ab-ef05a7799ab8\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.2969601Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\31b61e4a-40c1-40bf-b5ab-ef05a7799ab8\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.2970760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.2982126Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.3174879Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.3179575Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.3333604Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.3334774Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7a5ad8e9-2647-4b56-97ce-2085a45336e7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.3339539Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7a5ad8e9-2647-4b56-97ce-2085a45336e7\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.3340809Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.3351317Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.3643835Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.3650654Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.3669637Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:33:51.3682499Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:33:51.3683502Z","@mt":"{Project} is not a VB class library","@l":"Debug","Project":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.VisualBasic.MyDotAnalyzer"} +{"@t":"2022-11-15T22:33:51.3683781Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:33:51.3696667Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:33:51.3697096Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:33:51.3709780Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:33:51.3843262Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.3844117Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5618ff41-11b0-4027-9977-e3524eeab0f3\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.3852740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5618ff41-11b0-4027-9977-e3524eeab0f3\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.3854415Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.3871258Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.4150501Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.4157255Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.4290885Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.4291717Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\341d529e-7490-4cce-a6c8-d7c5b219ca9c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.4296588Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\341d529e-7490-4cce-a6c8-d7c5b219ca9c\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.4298300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.4322393Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.4617799Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.4627031Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.4648705Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:33:51.4661655Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:33:51.4662233Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:33:51.4676919Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:33:51.4812609Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.4813846Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7d68deec-993f-49e8-b8b4-fb816ab7c94b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.4819124Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7d68deec-993f-49e8-b8b4-fb816ab7c94b\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.4820727Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.4833534Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.5075866Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.5083107Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.5203365Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.5204091Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\aaeb7fe3-2e92-4990-a7d6-d8d57ae7c645\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.5207651Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\aaeb7fe3-2e92-4990-a7d6-d8d57ae7c645\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.5208537Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.5215939Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.5436630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.5442434Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.5481713Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:33:51.5492056Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:33:51.5492431Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:33:51.5504811Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:33:51.5603994Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.5604823Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7b38dd98-4dcf-471c-bd35-981d6f398775\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.5609382Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7b38dd98-4dcf-471c-bd35-981d6f398775\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.5610582Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.6142172Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.7307032Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.7310741Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.7368912Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:33:51.7394843Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Clean up NuGet package references","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:33:51.7425644Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Clean up NuGet package references","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:33:51.7451327Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:33:51.7454441Z","@mt":"Resetting upgrade step {UpgradeStep} because upgrade context has changed significantly since it was initialized","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.SetTFMStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.SetTFMStep"} +{"@t":"2022-11-15T22:33:51.7455287Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Update TFM","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:33:51.7616242Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.7618217Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1e2aea05-6b9e-409d-a76d-4377ae8f4a74\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.7624189Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1e2aea05-6b9e-409d-a76d-4377ae8f4a74\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.7625243Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.7633833Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.7819750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.7827609Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.7968848Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.7969410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\48a55531-138a-43b6-927e-862fe50b8289\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.7973289Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\48a55531-138a-43b6-927e-862fe50b8289\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.7974520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.7981047Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.8139856Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.8144788Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.8159316Z","@mt":"Skip minimum dependency check because Windows App SDK cannot work with targets lower than already recommended TFM.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:33:51.8189806Z","@mt":"Recommending Windows TFM {TFM} because the project either has Windows-specific dependencies or builds to a WinExe","TFM":"net7.0-windows10.0.19041","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsSdkTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:33:51.8225495Z","@mt":"TFM needs updated to {TargetTFM}","TargetTFM":"net7.0-windows10.0.19041","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.SetTFMStep"} +{"@t":"2022-11-15T22:33:51.8245365Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Update TFM","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:33:51.8245680Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.SetTFMStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:33:51.8269748Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Update TFM","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.SetTFMStep"} +{"@t":"2022-11-15T22:33:51.8477182Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.8477955Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3c7d6d9b-56fd-4762-8c7a-071fec363828\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.8484430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3c7d6d9b-56fd-4762-8c7a-071fec363828\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.8486182Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.8499629Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.8671560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.8676603Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.8845235Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.8845999Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4a70354a-2c12-4e23-8ab5-847eb25626e1\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.8848610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4a70354a-2c12-4e23-8ab5-847eb25626e1\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.8849296Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v6.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.8854113Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net6.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.8992926Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.8997406Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net6.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:33:51.9013281Z","@mt":"Skip minimum dependency check because Windows App SDK cannot work with targets lower than already recommended TFM.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:33:51.9041184Z","@mt":"Recommending Windows TFM {TFM} because the project either has Windows-specific dependencies or builds to a WinExe","TFM":"net7.0-windows10.0.19041","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsSdkTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:33:51.9079584Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:33:52.4928142Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj: (0, 0): Project PlantLady is not compatible with net6.0-windows10.0.19041 (.NETCoreApp,Version=v6.0). Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:33:52.4928743Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets '.NETCoreApp,Version=v7.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:34:08.8175563Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:34:08.8176201Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:34:08.8176452Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:34:08.8176646Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:34:08.9055278Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:34:08.9677491Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\Microsoft Visual Studio\\2022\\Preview\\MSBuild\\Xamarin\\Android\\Xamarin.Android.Legacy.targets: (234, 5): The reference assemblies for MonoAndroid,Version=v1.0 were not found. To resolve this, install the Developer Pack (SDK/Targeting Pack) for this framework version or retarget your application. You can download .NET Framework Developer Packs at https://aka.ms/msbuild/developerpacks","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:34:08.9680483Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:34:09.0181326Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets 'Xamarin.iOS,Version=v1.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:34:09.0184473Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:34:09.0237010Z","@mt":"Restoring packages for {ProjectPath} with dotnet restore","@l":"Debug","ProjectPath":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.DotnetRestorePackageRestorer"} +{"@t":"2022-11-15T22:34:09.9318504Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":" Determining projects to restore...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:34:11.1532328Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj : error NU1201: Project PlantLady is not compatible with net7.0-windows10.0.19041 (.NETCoreApp,Version=v7.0). Project PlantLady supports:","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:34:11.1533110Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj : error NU1201: - net7.0-android33.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:34:11.1533295Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj : error NU1201: - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:34:11.2050025Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":" Failed to restore C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj (in 487 ms).","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:34:11.2077404Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":" 1 of 2 projects are up-to-date for restore.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:34:11.2507158Z","@mt":"[{Tool}] Error: Exited with non-success code: {ExitCode}","@l":"Debug","Tool":"dotnet-restore","ExitCode":1,"SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:34:12.1350528Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj: (0, 0): Project PlantLady is not compatible with net7.0-windows10.0.19041 (.NETCoreApp,Version=v7.0). Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:34:12.1351106Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets '.NETCoreApp,Version=v7.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:34:26.3137680Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:34:26.3138665Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:34:26.3139010Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:34:26.3139334Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:34:26.4272917Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:34:26.4875835Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\Microsoft Visual Studio\\2022\\Preview\\MSBuild\\Xamarin\\Android\\Xamarin.Android.Legacy.targets: (234, 5): The reference assemblies for MonoAndroid,Version=v1.0 were not found. To resolve this, install the Developer Pack (SDK/Targeting Pack) for this framework version or retarget your application. You can download .NET Framework Developer Packs at https://aka.ms/msbuild/developerpacks","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:34:26.4878863Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:34:26.5394738Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets 'Xamarin.iOS,Version=v1.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:34:26.5397851Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:34:26.5435756Z","@mt":"Updated TFM to net7.0-windows10.0.19041","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.SetTFMStep"} +{"@t":"2022-11-15T22:34:26.5466544Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Update TFM","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.SetTFMStep"} +{"@t":"2022-11-15T22:34:31.5658894Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.5659959Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f8a546c1-aa8d-4d2f-9293-a131f8e0209b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.5663237Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f8a546c1-aa8d-4d2f-9293-a131f8e0209b\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.5664096Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.6013595Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.7035491Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.7038848Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.7262011Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.7262713Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0dcc947d-05bd-46d4-a6b7-72184ebad240\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.7265736Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0dcc947d-05bd-46d4-a6b7-72184ebad240\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.7266591Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.7270555Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.7403209Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.7406585Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.7526755Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.7527487Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\be08ea16-1b63-478d-abd0-9abe62008154\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.7530481Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\be08ea16-1b63-478d-abd0-9abe62008154\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.7531362Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.7535273Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.7656235Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.7659611Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.7776876Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.7777445Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0ead5377-1db0-4a56-bd35-75d0a69ea516\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.7780434Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0ead5377-1db0-4a56-bd35-75d0a69ea516\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.7781296Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.7785174Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.7908532Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.7911813Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.7922100Z","@mt":"Resetting upgrade step {UpgradeStep} because upgrade context has changed significantly since it was initialized","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:34:31.8029743Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.8030500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7b698041-6fc3-4e13-8710-f9752c5dc7ff\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.8033690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7b698041-6fc3-4e13-8710-f9752c5dc7ff\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.8034535Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.8038477Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.8174498Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.8177852Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.8294348Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.8294973Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\07abee8d-4efc-49dc-954a-9519a0720e29\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.8299994Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\07abee8d-4efc-49dc-954a-9519a0720e29\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.8300986Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.8305036Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.8455181Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.8458823Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.8595479Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.8596237Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e0e3e620-df03-484e-a702-984330535e38\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.8599288Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e0e3e620-df03-484e-a702-984330535e38\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.8600156Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.8604814Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.8727148Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.8730424Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.8879618Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.8880286Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\87e03c82-832d-432c-a45b-5734eb3658b9\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.8883650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\87e03c82-832d-432c-a45b-5734eb3658b9\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.8884587Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.8888843Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.9027478Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.9031068Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.9043264Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Update NuGet Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:34:31.9069287Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Update NuGet Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:34:31.9069628Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:34:31.9087943Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:34:31.9089003Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:34:31.9101212Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:34:31.9101514Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:34:31.9112109Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:34:31.9113229Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:34:31.9124793Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:34:31.9125068Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:34:31.9138761Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:34:31.9139888Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Microsoft.WindowsAppSDK, Version=1.1.0","PackagePath":"C:\\Users\\Sweeky Satpathy\\.nuget\\packages\\Microsoft.WindowsAppSDK\\1.1.0\\Microsoft.WindowsAppSDK.1.1.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"} +{"@t":"2022-11-15T22:34:31.9173813Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Microsoft.WindowsAppSDK.1.1.0","TargetFrameworks":["net5.0-windows10.0.17763","net5.0-windows10.0.18362","UAP,Version=v10.0","UAP,Version=v10.0.17763","UAP,Version=v10.0.18362","Windows,Version=v1.0,Profile=arm64","Windows,Version=v1.0,Profile=x64","Windows,Version=v1.0,Profile=x86"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"} +{"@t":"2022-11-15T22:34:31.9174972Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Microsoft.WindowsAppSDK, Version=1.1.0","TargetFramework":["net7.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"} +{"@t":"2022-11-15T22:34:31.9175854Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Microsoft.Graphics.Win2D, Version=1.0.0.30","PackagePath":"C:\\Users\\Sweeky Satpathy\\.nuget\\packages\\Microsoft.Graphics.Win2D\\1.0.0.30\\Microsoft.Graphics.Win2D.1.0.0.30.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"} +{"@t":"2022-11-15T22:34:31.9178938Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Microsoft.Graphics.Win2D.1.0.0.30","TargetFrameworks":[".NETCoreApp,Version=v3.0","net5.0-windows10.0.18362",".NETFramework,Version=v4.5","UAP,Version=v10.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"} +{"@t":"2022-11-15T22:34:31.9180521Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Microsoft.Graphics.Win2D, Version=1.0.0.30","TargetFramework":["net7.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"} +{"@t":"2022-11-15T22:34:31.9181402Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.4.355802","PackagePath":"C:\\Users\\Sweeky Satpathy\\.nuget\\packages\\Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers\\0.4.355802\\Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers.0.4.355802.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"} +{"@t":"2022-11-15T22:34:31.9183769Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers.0.4.355802","TargetFrameworks":["Any,Version=v0.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"} +{"@t":"2022-11-15T22:34:31.9184381Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.4.355802","TargetFramework":["net7.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"} +{"@t":"2022-11-15T22:34:31.9185319Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Microsoft.Windows.Compatibility, Version=7.0.0","PackagePath":"C:\\Users\\Sweeky Satpathy\\.nuget\\packages\\Microsoft.Windows.Compatibility\\7.0.0\\Microsoft.Windows.Compatibility.7.0.0.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"} +{"@t":"2022-11-15T22:34:31.9192371Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Microsoft.Windows.Compatibility.7.0.0","TargetFrameworks":["net6.0","net7.0",".NETStandard,Version=v2.0",".NETStandard,Version=v2.1"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"} +{"@t":"2022-11-15T22:34:31.9193062Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Microsoft.Windows.Compatibility, Version=7.0.0","TargetFramework":["net7.0-windows10.0.19041"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"} +{"@t":"2022-11-15T22:34:31.9193277Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:34:31.9220237Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:34:31.9220532Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:34:31.9238332Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:34:31.9238653Z","@mt":"Reference to .NET Upgrade Assistant analyzer package ({AnalyzerPackageName}) already exists","@l":"Debug","AnalyzerPackageName":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.UpgradeAssistantReferenceAnalyzer"} +{"@t":"2022-11-15T22:34:31.9238804Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:34:31.9251635Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:34:31.9252036Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:34:31.9267683Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:34:31.9367005Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.9367714Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b84fb6ac-a69e-4798-abdc-4bbfc2cdec8e\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.9370735Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b84fb6ac-a69e-4798-abdc-4bbfc2cdec8e\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.9371571Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:31.9657062Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.0837363Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.0840697Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.0873493Z","@mt":"{PackageName} already referenced transitively","@l":"Debug","PackageName":"Microsoft.Windows.Compatibility","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.WindowsCompatReferenceAnalyzer"} +{"@t":"2022-11-15T22:34:32.0873797Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:34:32.0894410Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:34:32.0894714Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:34:32.0908724Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:34:32.0909328Z","@mt":"{Project} is not a VB class library","@l":"Debug","Project":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.VisualBasic.MyDotAnalyzer"} +{"@t":"2022-11-15T22:34:32.0909517Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:34:32.0916876Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:34:32.0917139Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:34:32.0931160Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:34:32.1063291Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.1064015Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8166c19a-2eac-454f-9b7b-6913ce754b82\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.1067255Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8166c19a-2eac-454f-9b7b-6913ce754b82\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.1068181Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.1072400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.1215817Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.1219429Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.1352018Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.1352675Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ff2daa8c-c808-4df1-a2ea-3aa7c0343edc\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.1356693Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ff2daa8c-c808-4df1-a2ea-3aa7c0343edc\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.1357764Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.1362491Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.1509294Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.1512923Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.1525575Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:34:32.1548750Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:34:32.1549064Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:34:32.1567741Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:34:32.1698732Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.1699619Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5aa104bd-2dd2-495b-9f6c-c37c029b2c8e\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.1703127Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5aa104bd-2dd2-495b-9f6c-c37c029b2c8e\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.1703976Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.1707905Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.1842325Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.1845558Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.1961745Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.1962381Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\414a36e4-b1b4-48b6-a996-df22720237fc\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.1965485Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\414a36e4-b1b4-48b6-a996-df22720237fc\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.1966387Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.1970341Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.2117965Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.2127541Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.2142717Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:34:32.2161495Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:34:32.2161963Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:34:32.2173600Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:34:32.2285034Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.2285775Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5def89b6-9735-49c5-a90e-cf0355ac28d6\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.2290245Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5def89b6-9735-49c5-a90e-cf0355ac28d6\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.2291293Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.2675241Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.3752242Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.3755500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.3789496Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:34:32.3811088Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Update NuGet Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:34:32.3822935Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Update NuGet Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:34:32.3839013Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:34:32.3951525Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.3952215Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3d8babf0-1e03-4262-b7c7-6c04e3b9f475\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.3955574Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3d8babf0-1e03-4262-b7c7-6c04e3b9f475\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.3956402Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.3960335Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.4084578Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.4088164Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.4198471Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.4199089Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ac481cc4-9651-4014-800d-86f394327142\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.4202161Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ac481cc4-9651-4014-800d-86f394327142\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.4203031Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.4207025Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.4337873Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.4342148Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.4379114Z","@mt":"Resetting upgrade step {UpgradeStep} because upgrade context has changed significantly since it was initialized","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:34:32.4379711Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Add template files","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:34:32.4502683Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.4503337Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f0110e43-cd86-4853-9477-11395a257e51\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.4506207Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f0110e43-cd86-4853-9477-11395a257e51\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.4507035Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.4510958Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.4631216Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.4634417Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.4747178Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.4748062Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\969151f3-7231-4def-a037-9b3d18b9e5c0\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.4751477Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\969151f3-7231-4def-a037-9b3d18b9e5c0\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.4752400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.4756668Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.4885289Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.4888860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:34:32.4911492Z","@mt":"Considering {FilePath} for expected file {ExpectedFileName}","@l":"Debug","FilePath":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\App.xaml.cs","ExpectedFileName":"App.xaml.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:34:32.4920282Z","@mt":"File {FilePath} does not contain all necessary keywords to match","@l":"Debug","FilePath":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\App.xaml.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:34:32.4922475Z","@mt":"{FilesNeededCount} expected template items needed","FilesNeededCount":9,"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:34:32.4948952Z","@mt":"Needed items: {NeededFiles}","@l":"Debug","NeededFiles":"app.manifest, Properties\\launchSettings.json, Properties\\PublishProfiles\\win10-arm64.pubxml, Properties\\PublishProfiles\\win10-x64.pubxml, Properties\\PublishProfiles\\win10-x86.pubxml, App.xaml.cs, MainWindow.xaml.cs, MainWindow.xaml, UWPToWinAppSDKUpgradeHelpers.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:34:32.4949810Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Add template files","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:34:32.4950032Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:34:32.4962225Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Add template files","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:34:32.4985344Z","@mt":"Resolved project property {PropertyKey} to {PropertyValue}","@l":"Debug","PropertyKey":"RootNamespace","PropertyValue":"PlantLady.UWP","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:34:32.5064211Z","@mt":"Added template file app.manifest","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:34:32.5084706Z","@mt":"Resolved project property {PropertyKey} to {PropertyValue}","@l":"Debug","PropertyKey":"RootNamespace","PropertyValue":"PlantLady.UWP","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:34:32.5188374Z","@mt":"Added template file Properties\\launchSettings.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:34:32.5211941Z","@mt":"Resolved project property {PropertyKey} to {PropertyValue}","@l":"Debug","PropertyKey":"RootNamespace","PropertyValue":"PlantLady.UWP","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:34:32.5401171Z","@mt":"Added template file Properties\\PublishProfiles\\win10-arm64.pubxml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:34:32.5424310Z","@mt":"Resolved project property {PropertyKey} to {PropertyValue}","@l":"Debug","PropertyKey":"RootNamespace","PropertyValue":"PlantLady.UWP","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:34:32.5584784Z","@mt":"Added template file Properties\\PublishProfiles\\win10-x64.pubxml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:34:32.5606751Z","@mt":"Resolved project property {PropertyKey} to {PropertyValue}","@l":"Debug","PropertyKey":"RootNamespace","PropertyValue":"PlantLady.UWP","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:34:32.5769490Z","@mt":"Added template file Properties\\PublishProfiles\\win10-x86.pubxml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:34:32.5806132Z","@mt":"File already exists, moving {FileName} to {BackupFileName}","FileName":"App.xaml.cs","BackupFileName":"App.xaml.old.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:34:32.5836146Z","@mt":"Resolved project property {PropertyKey} to {PropertyValue}","@l":"Debug","PropertyKey":"RootNamespace","PropertyValue":"PlantLady.UWP","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:34:32.5986544Z","@mt":"Added template file App.xaml.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:34:32.6004447Z","@mt":"Resolved project property {PropertyKey} to {PropertyValue}","@l":"Debug","PropertyKey":"RootNamespace","PropertyValue":"PlantLady.UWP","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:34:32.6178777Z","@mt":"Added template file MainWindow.xaml.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:34:32.6201421Z","@mt":"Resolved project property {PropertyKey} to {PropertyValue}","@l":"Debug","PropertyKey":"RootNamespace","PropertyValue":"PlantLady.UWP","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:34:32.6341419Z","@mt":"Added template file MainWindow.xaml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:34:32.6358045Z","@mt":"Resolved project property {PropertyKey} to {PropertyValue}","@l":"Debug","PropertyKey":"RootNamespace","PropertyValue":"PlantLady.UWP","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:34:32.6484773Z","@mt":"Added template file UWPToWinAppSDKUpgradeHelpers.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:34:33.1339935Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj: (0, 0): Project PlantLady is not compatible with net7.0-windows10.0.19041 (.NETCoreApp,Version=v7.0). Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:34:33.1340492Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets '.NETCoreApp,Version=v7.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:34:46.5805453Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:34:46.5806108Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:34:46.5806308Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:34:46.5806454Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:34:46.6614029Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:34:46.7218602Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\Microsoft Visual Studio\\2022\\Preview\\MSBuild\\Xamarin\\Android\\Xamarin.Android.Legacy.targets: (234, 5): The reference assemblies for MonoAndroid,Version=v1.0 were not found. To resolve this, install the Developer Pack (SDK/Targeting Pack) for this framework version or retarget your application. You can download .NET Framework Developer Packs at https://aka.ms/msbuild/developerpacks","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:34:46.7221582Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:34:46.7728369Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets 'Xamarin.iOS,Version=v1.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:34:46.7731516Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:34:47.0378951Z","@mt":"Added app.manifest to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:34:47.0384888Z","@mt":"Added MainWindow.xaml to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:34:47.0385701Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:34:47.5362423Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj: (0, 0): Project PlantLady is not compatible with net7.0-windows10.0.19041 (.NETCoreApp,Version=v7.0). Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:34:47.5362980Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets '.NETCoreApp,Version=v7.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:35:05.7440559Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:35:05.7441225Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:35:05.7441417Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:35:05.7441614Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:35:05.8244618Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:35:05.8796709Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\Microsoft Visual Studio\\2022\\Preview\\MSBuild\\Xamarin\\Android\\Xamarin.Android.Legacy.targets: (234, 5): The reference assemblies for MonoAndroid,Version=v1.0 were not found. To resolve this, install the Developer Pack (SDK/Targeting Pack) for this framework version or retarget your application. You can download .NET Framework Developer Packs at https://aka.ms/msbuild/developerpacks","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:35:05.8799673Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:35:05.9366465Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets 'Xamarin.iOS,Version=v1.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:35:05.9370233Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:35:05.9414694Z","@mt":"{ItemCount} template items added","ItemCount":9,"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:35:05.9464048Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Add template files","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:35:11.1608532Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.1609411Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ad17a796-b212-4400-a778-d4c4fce3cf8f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.1612613Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ad17a796-b212-4400-a778-d4c4fce3cf8f\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.1613514Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.1949156Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.3151607Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.3154916Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.3319139Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.3319775Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\80171dec-22b0-488d-b058-c8b14b236068\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.3323416Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\80171dec-22b0-488d-b058-c8b14b236068\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.3324459Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.3329198Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.3524890Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.3530632Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.3698483Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.3699581Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c60f7140-a712-46b7-9f8c-d556e6575aac\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.3704584Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c60f7140-a712-46b7-9f8c-d556e6575aac\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.3706067Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.3712447Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.3921045Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.3926172Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.4101443Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.4102280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3814b952-a0a3-424b-9613-014b0b54dcb2\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.4106873Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3814b952-a0a3-424b-9613-014b0b54dcb2\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.4108231Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.4114472Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.4315154Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.4320419Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.4496512Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.4497470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b8f78127-204e-4f40-ae58-573764630ad3\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.4502421Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b8f78127-204e-4f40-ae58-573764630ad3\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.4503896Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.4510350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.4713462Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.4717813Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.4850029Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.4850654Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\25f87679-e2c0-4999-b7be-3be124353a3a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.4854047Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\25f87679-e2c0-4999-b7be-3be124353a3a\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.4854988Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.4875765Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.5020111Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.5024634Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.5226765Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.5227877Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5b0c8dd9-0d26-451d-90ac-b131db7867a2\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.5232939Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5b0c8dd9-0d26-451d-90ac-b131db7867a2\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.5234475Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.5241748Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.5460133Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.5465795Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.5650901Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.5651823Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c8726776-5af5-4d17-a655-6ca564e67481\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.5657146Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c8726776-5af5-4d17-a655-6ca564e67481\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.5658682Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.5665466Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.5928595Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.5935082Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.5952776Z","@mt":"Resetting upgrade step {UpgradeStep} because upgrade context has changed significantly since it was initialized","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Extensions.WCFUpdater.WCFUpdateStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.WCFUpdater.WCFUpdateStep"} +{"@t":"2022-11-15T22:35:11.6099326Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.6100373Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\128cf0fa-96e4-489a-93c0-7f2aec9ffb89\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.6106397Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\128cf0fa-96e4-489a-93c0-7f2aec9ffb89\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.6107951Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.6114993Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.6302903Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.6306706Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.6424456Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.6425035Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\56dc4389-c8f7-416a-a979-1c0f5133f29d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.6428314Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\56dc4389-c8f7-416a-a979-1c0f5133f29d\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.6429304Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.6433866Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.6575682Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.6579461Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.6702204Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.6703011Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a009f3f5-5091-4a79-8451-541b5eb7fa7d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.6706641Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a009f3f5-5091-4a79-8451-541b5eb7fa7d\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.6707678Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.6712285Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.6866305Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.6870110Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.6991114Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.6991716Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b3ae4c1f-cb46-483e-a48c-ce5052cb640f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.6995193Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b3ae4c1f-cb46-483e-a48c-ce5052cb640f\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.6996603Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.7001750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.7163362Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.7167666Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.7299803Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.7300536Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d99cd752-4101-4a0f-95e5-071544aea3fc\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.7304382Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d99cd752-4101-4a0f-95e5-071544aea3fc\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.7305570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.7310839Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.7486822Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.7491249Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.7622070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.7622754Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6182863c-2303-4495-8de7-6ea52f641b27\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.7626787Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6182863c-2303-4495-8de7-6ea52f641b27\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.7627976Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.7633172Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.7803011Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.7808091Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.8025293Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.8026667Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\bd4edb05-30c6-4035-ae71-4e7a84eb48dd\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.8032581Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\bd4edb05-30c6-4035-ae71-4e7a84eb48dd\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.8034270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.8041934Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.8295670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.8303168Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.8518192Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.8519832Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d311f39a-eac7-4f45-b7ff-543637db2352\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.8528390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d311f39a-eac7-4f45-b7ff-543637db2352\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.8530557Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.8539877Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.8832212Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.8839979Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.8863311Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Update WCF service to CoreWCF (Preview)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:35:11.8939771Z","@mt":"Found more than one .cs file with Main() method. The project is not applicable for automated WCF update. No more work needs to be done and this step is complete.","@l":"Warning","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.WCFUpdater.WCFUpdateStep"} +{"@t":"2022-11-15T22:35:11.8971369Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Update WCF service to CoreWCF (Preview)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:35:11.9073510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.9074281Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a945c916-3493-41cf-b595-381696d26f56\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.9077324Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a945c916-3493-41cf-b595-381696d26f56\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.9078157Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.9081993Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.9204016Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.9207778Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.9313252Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.9313892Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\339f5461-749c-4261-a50a-66d1be38a403\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.9317164Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\339f5461-749c-4261-a50a-66d1be38a403\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.9318054Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.9322280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.9441572Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.9444794Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.9571134Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.9571880Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c1457aca-3ed4-4725-9466-0d9571efadbf\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.9574960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c1457aca-3ed4-4725-9466-0d9571efadbf\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.9575850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.9579711Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.9708637Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.9711932Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.9835543Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.9836156Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f8e216d8-daba-4b4e-923f-b6e8b445086b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.9839603Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f8e216d8-daba-4b4e-923f-b6e8b445086b\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.9840803Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.9845067Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.9975750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:11.9979315Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.0110281Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.0110995Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e55961a0-ebb5-412d-8020-86a704e79cb0\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.0114341Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e55961a0-ebb5-412d-8020-86a704e79cb0\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.0115283Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.0119583Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.0248612Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.0252316Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.0375420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.0376066Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9ce09a58-021f-4461-b023-ce2ce19f43b7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.0379843Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9ce09a58-021f-4461-b023-ce2ce19f43b7\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.0380900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.0385198Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.0516243Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.0520774Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.0536743Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Update Windows Desktop Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:35:12.0753646Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.0754981Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5b25f9dc-2369-4cae-a2db-6347307138a5\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.0759254Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5b25f9dc-2369-4cae-a2db-6347307138a5\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.0760290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.0765034Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.0940219Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.0945279Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.1127291Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.1128201Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\60fc2243-a5c6-4a11-89b4-05052769b61f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.1132617Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\60fc2243-a5c6-4a11-89b4-05052769b61f\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.1134078Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.1140231Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.1357878Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.1363276Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.1546274Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.1546978Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\074b6f76-6dc9-4cb2-9871-0bb24612aea7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.1549913Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\074b6f76-6dc9-4cb2-9871-0bb24612aea7\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.1550756Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.1554596Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.1681692Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.1684951Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.1822886Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.1823555Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\667681c8-a83e-4f6b-bb13-1f3ef2387fde\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.1826895Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\667681c8-a83e-4f6b-bb13-1f3ef2387fde\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.1827821Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.1832011Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.1965508Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.1969006Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.2109905Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.2110644Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9613fec8-5d6d-4ed8-a0fe-08acfa3fca5b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.2113799Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9613fec8-5d6d-4ed8-a0fe-08acfa3fca5b\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.2114707Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.2119023Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.2270978Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.2274617Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.2389188Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.2389734Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\50f11434-797d-4abb-ad9f-1235bafb4c8f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.2392635Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\50f11434-797d-4abb-ad9f-1235bafb4c8f\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.2393451Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.2397304Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.2530044Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.2533527Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.2655087Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.2655813Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\22f1a606-3900-4bd7-ae9c-4def9f3a6ffc\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.2659220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\22f1a606-3900-4bd7-ae9c-4def9f3a6ffc\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.2660189Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.2664392Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.2838189Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.2842798Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.3007297Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.3008310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ee8d3039-1393-400f-8981-427be139a8fb\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.3014217Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ee8d3039-1393-400f-8981-427be139a8fb\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.3016350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.3023619Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.3245937Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.3251967Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.3464715Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.3465908Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9ee8f89a-b712-42fc-a514-6f0dfaf9486c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.3473356Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9ee8f89a-b712-42fc-a514-6f0dfaf9486c\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.3475321Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.3502270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.3713159Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.3757309Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.3961779Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.3962868Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\cae931f7-8e46-49b6-b1c2-b15c3c993505\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.3968641Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\cae931f7-8e46-49b6-b1c2-b15c3c993505\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.3970297Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.3977595Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.4238603Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.4244672Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.4464984Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.4466128Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8bfcbfb9-c2bd-4f83-a3d6-44c4ce739e5c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.4471657Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8bfcbfb9-c2bd-4f83-a3d6-44c4ce739e5c\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.4473323Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.4480404Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.4712185Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.4718145Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.4918062Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.4919089Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c0650f50-cf4e-43d4-91dc-8e3e1450bcc6\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.4924405Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c0650f50-cf4e-43d4-91dc-8e3e1450bcc6\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.4925927Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.4933009Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.5195652Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.5202144Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.5405971Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.5407160Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3db92f3c-8179-4cca-bc2a-738e27fb59ff\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.5412700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3db92f3c-8179-4cca-bc2a-738e27fb59ff\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.5414343Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.5421748Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.5659996Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.5666014Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.5810403Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.5811101Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fe85348d-d84f-4934-8373-6da5d5e871c3\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.5814265Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fe85348d-d84f-4934-8373-6da5d5e871c3\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.5815099Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.5819047Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.5938671Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.5942249Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.6105594Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Update Windows Desktop Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:35:12.6247857Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.6248559Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a06f51e8-9f40-4356-8cd2-b8a7b3c72ca4\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.6251893Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a06f51e8-9f40-4356-8cd2-b8a7b3c72ca4\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.6252750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.6256971Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.6374058Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.6377286Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.6536495Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.6537117Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c434827b-55ee-4cd6-bab5-5d27ffb2ce26\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.6540072Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c434827b-55ee-4cd6-bab5-5d27ffb2ce26\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.6540902Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.6544771Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.6657985Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.6661220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.6801809Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.6802706Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6c4d73ff-bcf7-4f2e-bb64-6110111504ac\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.6806591Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6c4d73ff-bcf7-4f2e-bb64-6110111504ac\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.6807690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.6823321Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.6949478Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.6953443Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.7108847Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.7109581Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\32c79ec6-39f2-4845-b375-48e3db14c874\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.7113180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\32c79ec6-39f2-4845-b375-48e3db14c874\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.7114217Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.7118903Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.7301163Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.7306511Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.7506336Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.7507557Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\720da83a-b130-4e9e-b36d-9de88ff20b20\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.7513220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\720da83a-b130-4e9e-b36d-9de88ff20b20\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.7516191Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.7523497Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.7757699Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.7763889Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.7975035Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.7976156Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6546722e-5ba0-45f6-b5e4-30ad5c7548e5\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.7981356Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6546722e-5ba0-45f6-b5e4-30ad5c7548e5\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.7982882Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.7991688Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.8255314Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.8261448Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.8288254Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WinUINamespaceUpdater","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:35:12.8331884Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Update WinUI namespaces","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsDesktopUpdateStep"} +{"@t":"2022-11-15T22:35:12.8742443Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Update WinUI namespaces","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsDesktopUpdateStep"} +{"@t":"2022-11-15T22:35:12.8977661Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.8978969Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ea2c725e-614c-4699-aa8d-e8a8cc5c7b77\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.8984627Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ea2c725e-614c-4699-aa8d-e8a8cc5c7b77\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.8986230Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.8993929Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.9220453Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.9225643Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.9388374Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.9389110Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\bd252996-19ec-47cc-afae-682a4e4dc92b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.9392650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\bd252996-19ec-47cc-afae-682a4e4dc92b\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.9393661Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:12.9398979Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.0168508Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.0312078Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.0494403Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.0495651Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\422d1c59-7719-461a-88f6-afdecfb89c31\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.0501331Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\422d1c59-7719-461a-88f6-afdecfb89c31\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.0502970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.0510373Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.0750541Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.0756590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.0941975Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.0943293Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\07b467e7-4340-48a6-bc99-9df5f0c83f0e\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.0950492Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\07b467e7-4340-48a6-bc99-9df5f0c83f0e\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.0952130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.0959339Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.1191567Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.1197607Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.1401242Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.1402499Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c718b31d-7723-4e49-a7d7-017d4b366df5\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.1408073Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c718b31d-7723-4e49-a7d7-017d4b366df5\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.1409632Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.1416645Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.1647384Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.1654031Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.1826488Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.1827484Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\65d4b90e-a63a-42b4-97a0-ca0f96eeaf65\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.1833001Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\65d4b90e-a63a-42b4-97a0-ca0f96eeaf65\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.1834560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.1841556Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.2066474Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.2072600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.2238244Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.2239381Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d7b4d493-e33f-49fb-9f73-08c1bbf5a24e\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.2244814Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d7b4d493-e33f-49fb-9f73-08c1bbf5a24e\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.2246383Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.2253454Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.2438224Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.2442363Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.2555408Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.2556047Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fb6441e4-6b47-4319-8fa5-aa0ddba2de62\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.2559240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fb6441e4-6b47-4319-8fa5-aa0ddba2de62\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.2560180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.2564257Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.2686830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.2690035Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.2796181Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.2796891Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\259bf961-6382-4be7-9844-062535dbccc3\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.2799915Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\259bf961-6382-4be7-9844-062535dbccc3\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.2800769Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.2804687Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.2921653Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.2925040Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.3032446Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.3033065Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8c1128be-7464-4ca3-bb68-45fd12dd6998\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.3036219Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8c1128be-7464-4ca3-bb68-45fd12dd6998\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.3037051Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.3040888Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.3167062Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.3170335Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.3282336Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.3283000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6eea9441-0082-4ee2-bad1-5938fbb93523\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.3286141Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6eea9441-0082-4ee2-bad1-5938fbb93523\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.3287006Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.3290838Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.3417894Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.3421244Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.3535160Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.3535742Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e8e4a8d6-6a83-42dc-92d4-f765842a7614\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.3538761Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e8e4a8d6-6a83-42dc-92d4-f765842a7614\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.3539614Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.3543507Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.3668071Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.3671378Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.3826008Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.3826731Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d00cfc6a-a08d-42c0-81b2-54abbdbf4b25\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.3830140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d00cfc6a-a08d-42c0-81b2-54abbdbf4b25\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.3831423Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.3835406Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.3963518Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.3966841Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.4089907Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.4090560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6017bb65-2994-49f0-84c3-0ac6f59f0b49\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.4093810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6017bb65-2994-49f0-84c3-0ac6f59f0b49\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.4094643Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.4098504Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.4221073Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.4224502Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.4343275Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.4343949Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\72063bfb-843b-45d5-9dcc-ef12bc242438\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.4347146Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\72063bfb-843b-45d5-9dcc-ef12bc242438\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.4348029Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.4352003Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.4473319Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.4476537Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.4599520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.4600109Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3fb56ff8-096c-43f7-90f4-af466604e29c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.4603037Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3fb56ff8-096c-43f7-90f4-af466604e29c\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.4603880Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.4607768Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.4738502Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.4742108Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.4864027Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.4864797Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4ec1555d-a4ff-4b0c-9980-0a4c91656da6\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.4868050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4ec1555d-a4ff-4b0c-9980-0a4c91656da6\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.4869068Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.4873289Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.5008144Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.5011716Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.5150275Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.5150898Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\cf8166a8-90a6-4cfd-a174-078ffacafe4a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.5154207Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\cf8166a8-90a6-4cfd-a174-078ffacafe4a\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.5155145Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.5159564Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.5288075Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.5291696Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.5440136Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.5440908Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a8dead4c-d816-45ff-a303-83486ffcbb86\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.5444188Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a8dead4c-d816-45ff-a303-83486ffcbb86\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.5445155Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.5449457Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.5584528Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.5588141Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.5736577Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.5737589Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1fc88b31-73e7-4d76-8578-d6e9ac443575\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.5741198Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1fc88b31-73e7-4d76-8578-d6e9ac443575\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.5742121Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.5746349Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.5887850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.5892299Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.6039357Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.6040341Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d7e00660-c5af-42ad-bd5f-233b38767d5b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.6044024Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d7e00660-c5af-42ad-bd5f-233b38767d5b\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.6045079Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.6063239Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.6240184Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.6266468Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.6409945Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.6410701Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3e1b796d-0638-4192-a3b6-16c108560801\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.6414871Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3e1b796d-0638-4192-a3b6-16c108560801\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.6416015Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.6419965Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.6543683Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.6547073Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.6665871Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.6666624Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4a438aba-3319-45e9-8208-590c4048e9c7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.6669702Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4a438aba-3319-45e9-8208-590c4048e9c7\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.6670545Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.6674463Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.6799204Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.6802472Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.6925661Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.6926257Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ecd7351b-f84c-4f74-8fb7-10cf218da8d2\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.6929170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ecd7351b-f84c-4f74-8fb7-10cf218da8d2\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.6929985Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.6933810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.7053316Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.7056578Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.7189660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.7190445Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\39b14946-7e7b-4200-b39e-5dc7f38f89b6\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.7193844Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\39b14946-7e7b-4200-b39e-5dc7f38f89b6\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.7194729Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.7199060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.7340803Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.7344440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.7480342Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.7480984Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e39f5561-b668-47f7-8b05-d542c5434a9b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.7484197Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e39f5561-b668-47f7-8b05-d542c5434a9b\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.7485106Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.7489405Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.7618765Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.7622229Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.7764805Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.7765568Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\429c05b9-3865-40ee-add5-6c255f25e62a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.7768948Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\429c05b9-3865-40ee-add5-6c255f25e62a\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.7769877Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.7774114Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.7916583Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.7920694Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.8065776Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.8066489Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\62fcdc4c-bab3-4d6a-9fe7-40e420fd25fd\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.8070478Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\62fcdc4c-bab3-4d6a-9fe7-40e420fd25fd\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.8071634Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.8076980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.8245520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.8250157Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.8446210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.8447394Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2d503f10-5779-4e7f-8394-8b236caf79a5\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.8452508Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2d503f10-5779-4e7f-8394-8b236caf79a5\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.8454223Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.8461434Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.8682211Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.8688461Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.8905008Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.8906130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4ffe44f0-42bb-421b-8bc6-02ed8ac50fc0\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.8911949Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4ffe44f0-42bb-421b-8bc6-02ed8ac50fc0\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.8913544Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.8920697Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.9215775Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.9222598Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.9428285Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.9429470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4ceece44-babc-4f70-a498-d30d4f3ecc1f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.9435350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4ceece44-babc-4f70-a498-d30d4f3ecc1f\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.9437013Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.9444463Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.9690628Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.9696943Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.9921266Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.9922264Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9131520e-0a61-4ffd-a8ae-c6c8b88dcbed\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.9927709Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9131520e-0a61-4ffd-a8ae-c6c8b88dcbed\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.9929275Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:13.9936915Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:14.0165627Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:14.0171683Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:14.0381334Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:14.0382524Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\59211841-241d-4e60-85e1-cc8ab61dcf70\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:14.0388019Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\59211841-241d-4e60-85e1-cc8ab61dcf70\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:14.0389623Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:14.0396807Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:14.0628549Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:14.0634891Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:14.0815586Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:14.0816670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\17ad12d5-1e2c-41c8-8059-41a57a323286\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:14.0822257Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\17ad12d5-1e2c-41c8-8059-41a57a323286\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:14.0823929Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:14.0831164Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:14.1076784Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:14.1082928Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:14.1282030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:14.1283245Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f13471ed-98af-42b8-8aa9-82c19fbfbfeb\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:14.1288896Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f13471ed-98af-42b8-8aa9-82c19fbfbfeb\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:14.1290507Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:14.1297656Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:14.1530541Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:14.1536722Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:14.1734119Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:14.1735180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d243eeb4-3f96-4703-b3ac-3ef9a2123daf\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:14.1741529Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d243eeb4-3f96-4703-b3ac-3ef9a2123daf\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:14.1743175Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:14.1750483Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:14.1993522Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:14.1999669Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:14.2024952Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WinUIPropertiesUpdater","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:35:14.2028971Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Update WinUI Project Properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsDesktopUpdateStep"} +{"@t":"2022-11-15T22:35:14.2143032Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:35:15.0438775Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj: (0, 0): Project PlantLady is not compatible with net7.0-windows10.0.19041 (.NETCoreApp,Version=v7.0). Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:35:15.0439459Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets '.NETCoreApp,Version=v7.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:35:28.5359565Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:35:28.5360219Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:35:28.5360409Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:35:28.5360552Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:35:28.6234956Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:35:28.6883623Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\Microsoft Visual Studio\\2022\\Preview\\MSBuild\\Xamarin\\Android\\Xamarin.Android.Legacy.targets: (234, 5): The reference assemblies for MonoAndroid,Version=v1.0 were not found. To resolve this, install the Developer Pack (SDK/Targeting Pack) for this framework version or retarget your application. You can download .NET Framework Developer Packs at https://aka.ms/msbuild/developerpacks","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:35:28.6886890Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:35:28.7425836Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets 'Xamarin.iOS,Version=v1.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:35:28.7429074Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:35:28.7474221Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Update WinUI Project Properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsDesktopUpdateStep"} +{"@t":"2022-11-15T22:35:33.7662785Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:33.7663684Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d73357f9-f9ac-4378-9671-7732dfb66de0\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:33.7666671Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d73357f9-f9ac-4378-9671-7732dfb66de0\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:33.7667505Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:33.8001462Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:33.9072934Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:33.9076174Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:33.9227589Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:33.9228172Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6dcd3300-db13-43e1-a013-e3dfbe716f8c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:33.9231227Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6dcd3300-db13-43e1-a013-e3dfbe716f8c\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:33.9232074Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:33.9236063Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:33.9364759Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:33.9367994Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:33.9487244Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:33.9487951Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f1e0146a-7f45-45d9-9f21-2f8172944b99\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:33.9491114Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f1e0146a-7f45-45d9-9f21-2f8172944b99\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:33.9492034Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:33.9496247Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:33.9627739Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:33.9631523Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:33.9748111Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:33.9748708Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e26eeb0b-2924-4676-a1b4-4c6c406f5246\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:33.9751930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e26eeb0b-2924-4676-a1b4-4c6c406f5246\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:33.9752874Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:33.9757165Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:33.9891937Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:33.9895537Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.0016132Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.0016834Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6da30283-e2a9-453a-bc79-4aee68fbc3c2\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.0019931Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6da30283-e2a9-453a-bc79-4aee68fbc3c2\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.0020832Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.0025016Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.0157649Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.0161272Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.0279282Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.0279859Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f6c1e9d3-e8a0-4fcc-b265-a3be4be39ea7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.0283168Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f6c1e9d3-e8a0-4fcc-b265-a3be4be39ea7\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.0284090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.0288425Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.0420936Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.0424593Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.0545409Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.0546127Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c4af39ad-82af-4c0c-911b-da6900410806\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.0549484Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c4af39ad-82af-4c0c-911b-da6900410806\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.0550403Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.0554629Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.0697464Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.0700995Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.0838291Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.0838981Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b19d73c9-cf8a-4829-b430-40c67d198cb1\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.0843246Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b19d73c9-cf8a-4829-b430-40c67d198cb1\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.0844178Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.0848137Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.0988707Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.0992381Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.1122208Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.1123052Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a431b10b-e7e6-4a90-bb6a-1247c316af4e\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.1126727Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a431b10b-e7e6-4a90-bb6a-1247c316af4e\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.1127775Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.1132701Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.1289076Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.1293095Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.1425793Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.1426578Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8014c292-ccc3-4b5a-97f0-e6c09d25397f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.1431194Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8014c292-ccc3-4b5a-97f0-e6c09d25397f\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.1432229Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.1437088Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.1599555Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.1603602Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.1721199Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.1721857Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0899a7ee-e99e-4e3e-b3a4-13c4b097980c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.1724952Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0899a7ee-e99e-4e3e-b3a4-13c4b097980c\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.1725814Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.1729730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.1886689Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.1892130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.2016784Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.2017358Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\24692025-1cc5-4d69-b4d5-ecd55e737893\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.2020391Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\24692025-1cc5-4d69-b4d5-ecd55e737893\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.2021244Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.2025225Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.2144981Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.2148490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.2276988Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.2277811Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2153bf25-dc28-4021-8052-a800a7920ef1\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.2280967Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2153bf25-dc28-4021-8052-a800a7920ef1\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.2281850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.2285930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.2407443Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.2410806Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.2524838Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.2525425Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fb3f5e0e-046d-4adb-9277-cea50f2d25a7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.2528386Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fb3f5e0e-046d-4adb-9277-cea50f2d25a7\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.2529240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.2533211Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.2664045Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.2667608Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.2804416Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.2805152Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9bed9b53-79c4-4938-813d-15f0aba9bcef\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.2808707Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9bed9b53-79c4-4938-813d-15f0aba9bcef\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.2809695Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.2814175Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.2940463Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.2943648Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.3065288Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.3065864Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\05ce5665-d28a-4c13-882b-e515b4df0e67\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.3068866Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\05ce5665-d28a-4c13-882b-e515b4df0e67\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.3069690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.3073543Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.3192203Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.3195755Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.3339193Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.3339980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b022afd4-04fc-4ffc-acd4-58dffc9a10c1\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.3343111Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b022afd4-04fc-4ffc-acd4-58dffc9a10c1\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.3343995Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.3348328Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.3482084Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.3485612Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.3613275Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.3613879Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\57ba57ce-75ff-4ca5-bbf6-45346b3f763e\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.3617063Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\57ba57ce-75ff-4ca5-bbf6-45346b3f763e\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.3617996Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.3622355Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.3769218Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.3772937Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.3902037Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.3902924Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\69c06318-8d31-43f4-a99e-3ffd8491f13b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.3906409Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\69c06318-8d31-43f4-a99e-3ffd8491f13b\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.3907357Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.3911560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.4060273Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.4063823Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.4184383Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.4184954Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0e3bcd81-668e-4e1b-b425-b13dda445a41\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.4188120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0e3bcd81-668e-4e1b-b425-b13dda445a41\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.4189021Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.4193297Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.4325979Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.4329556Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.4436399Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.4437272Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\28eaf49e-d383-48b4-864f-5e6f5a3c513b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.4440857Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\28eaf49e-d383-48b4-864f-5e6f5a3c513b\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.4441939Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.4446335Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.4585131Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.4588767Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.4696923Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.4697540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d9d7abe3-b9b0-4837-9641-a09bad2fecb8\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.4704559Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d9d7abe3-b9b0-4837-9641-a09bad2fecb8\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.4705666Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.4709993Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.4840829Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.4844025Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.4947475Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.4948059Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7d1dbe0a-d747-4ad5-8411-033845ad574a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.4951236Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7d1dbe0a-d747-4ad5-8411-033845ad574a\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.4952107Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.4956091Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.5073242Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.5076509Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.5176127Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.5176696Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\39875fcc-5e25-4c2a-9e57-248947fe9483\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.5179618Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\39875fcc-5e25-4c2a-9e57-248947fe9483\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.5180458Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.5184479Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.5299431Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.5302835Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.5443626Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.5444886Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1d9c42cf-4308-48b8-b3da-81fa3cbd3b08\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.5448132Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1d9c42cf-4308-48b8-b3da-81fa3cbd3b08\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.5449021Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.5453346Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.5603848Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.5607510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.5717550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.5718142Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0229b028-2415-417b-8a47-8010bf498165\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.5721375Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0229b028-2415-417b-8a47-8010bf498165\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.5722325Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.5726698Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.5860793Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.5864483Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.5981348Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.5982090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7b4e7708-65b0-4712-874c-de1be845742c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.5985412Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7b4e7708-65b0-4712-874c-de1be845742c\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.5986407Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.5990828Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.6123889Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.6127694Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.6236376Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.6236942Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\adac611c-4b3f-487e-8c19-0943f5ea57ff\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.6240194Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\adac611c-4b3f-487e-8c19-0943f5ea57ff\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.6241102Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.6245381Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.6377993Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.6381802Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.6481430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.6482133Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\02aa0eda-7212-4235-87d9-e9a5568a4a97\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.6485041Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\02aa0eda-7212-4235-87d9-e9a5568a4a97\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.6485863Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.6489773Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.6613643Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.6616946Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.6727644Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.6728203Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c14b932f-c948-406c-a2ef-8d9b528e97f7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.6731169Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c14b932f-c948-406c-a2ef-8d9b528e97f7\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.6732004Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.6735869Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.6851199Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.6854657Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.6962066Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.6962737Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\eefd8923-3e7b-48cd-aa5a-8ab184b1dcb9\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.6965996Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\eefd8923-3e7b-48cd-aa5a-8ab184b1dcb9\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.6966926Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.6971183Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.7099245Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.7102812Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.7206289Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.7206882Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0cb953d4-0e0a-4a9b-8c15-b4d6bbe0f127\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.7210132Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0cb953d4-0e0a-4a9b-8c15-b4d6bbe0f127\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.7211040Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.7215318Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.7363713Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.7367243Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.7480857Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.7481596Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6bd5b2f3-40f0-4030-b366-3e5b5a1daa02\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.7485465Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6bd5b2f3-40f0-4030-b366-3e5b5a1daa02\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.7486528Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.7504170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.7649086Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.7676523Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.7810582Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.7811259Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1c370698-55f7-4aa2-b5f0-a5210ec64670\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.7814768Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1c370698-55f7-4aa2-b5f0-a5210ec64670\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.7815788Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.7820970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.7975483Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.7979514Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.8111949Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.8112778Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b1622828-5b91-4879-847a-f779fc9036ce\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.8116442Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b1622828-5b91-4879-847a-f779fc9036ce\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.8117457Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.8122556Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.8276445Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.8280629Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.8412009Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.8412723Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3ecb12d3-ac73-4fbf-809f-d6b0b19c6432\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.8416489Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3ecb12d3-ac73-4fbf-809f-d6b0b19c6432\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.8417636Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.8422651Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.8590739Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.8594923Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.8733988Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.8734835Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d5342aea-6a57-489a-a516-5c549d728fff\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.8738654Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d5342aea-6a57-489a-a516-5c549d728fff\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.8739746Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.8744589Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.8913311Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.8917558Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.9055027Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.9055627Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\42cca84a-8992-48f7-ac01-8f91ea02c5d3\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.9058702Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\42cca84a-8992-48f7-ac01-8f91ea02c5d3\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.9059555Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.9063575Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.9192728Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.9195962Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.9207494Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WinUIPackageAppxmanifestUpdater","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:35:34.9219718Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Update package.appxmanifest","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsDesktopUpdateStep"} +{"@t":"2022-11-15T22:35:34.9281263Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Update package.appxmanifest","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsDesktopUpdateStep"} +{"@t":"2022-11-15T22:35:34.9426871Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.9427547Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\dd5c3119-fed3-404e-ac0a-d77ff89f2499\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.9431243Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\dd5c3119-fed3-404e-ac0a-d77ff89f2499\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.9432244Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.9436516Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.9570816Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.9574086Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.9695390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.9696051Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c757d8e7-3edb-4413-8f4f-22d734a739fb\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.9701334Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c757d8e7-3edb-4413-8f4f-22d734a739fb\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.9702298Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.9706959Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.9842706Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.9846212Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.9981975Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.9982748Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5a3537d9-7d93-4c5a-8e27-7f640aaa3dea\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.9985891Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5a3537d9-7d93-4c5a-8e27-7f640aaa3dea\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.9986746Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:34.9990755Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.0138253Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.0141511Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.0282764Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.0283503Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\54840401-a8e5-4263-a5fe-4f7cd75a49ad\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.0286956Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\54840401-a8e5-4263-a5fe-4f7cd75a49ad\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.0287911Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.0292564Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.0441864Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.0445447Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.0572219Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.0573071Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\dccdf61f-de47-428a-9a9a-eb539ef48c1d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.0576737Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\dccdf61f-de47-428a-9a9a-eb539ef48c1d\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.0577641Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.0581879Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.0717929Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.0721980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.0855543Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.0856219Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\307df7dd-1539-4eaf-8710-483b50ae1267\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.0859679Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\307df7dd-1539-4eaf-8710-483b50ae1267\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.0860695Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.0866368Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.1059659Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.1064631Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.1211025Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.1211937Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3659622b-b341-448e-8630-a6bc980404d5\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.1216005Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3659622b-b341-448e-8630-a6bc980404d5\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.1217211Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.1222765Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.1395224Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.1399708Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.1547270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.1547876Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\900efc2d-d299-4c51-aba6-840cf47afc72\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.1551252Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\900efc2d-d299-4c51-aba6-840cf47afc72\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.1552220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.1556790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.1707243Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.1710935Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.1826294Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.1826932Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\cbc7b4bc-2cb3-4886-97b1-737095bb6101\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.1829978Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\cbc7b4bc-2cb3-4886-97b1-737095bb6101\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.1830832Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.1834647Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.1958368Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.1961847Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.2072059Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.2072617Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0ed7f1fc-c764-45a4-a624-afc3d2f07d20\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.2075515Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0ed7f1fc-c764-45a4-a624-afc3d2f07d20\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.2076352Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.2080340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.2193924Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.2197102Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.2322497Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.2323233Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\136f0f85-63e8-4253-8d2e-336622e77713\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.2326986Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\136f0f85-63e8-4253-8d2e-336622e77713\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.2328139Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.2351061Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.2487541Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.2513086Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.2656465Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.2657221Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c277eca7-a919-44ce-8b35-48219dd5d664\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.2660911Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c277eca7-a919-44ce-8b35-48219dd5d664\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.2661949Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.2666795Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.2832425Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.2836363Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.2987322Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.2988083Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\958f972e-4d9d-42be-bed9-154c8957917a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.2991660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\958f972e-4d9d-42be-bed9-154c8957917a\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.2992733Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.2997532Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.3144407Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.3148295Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.3270555Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.3271062Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a77ed699-ee12-4dfe-bba6-ebc3df803d56\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.3273891Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a77ed699-ee12-4dfe-bba6-ebc3df803d56\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.3274729Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.3278549Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.3396443Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.3399629Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.3521673Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.3522406Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\740a39a7-6ecf-49fd-a74d-0c4d4910c4b1\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.3525443Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\740a39a7-6ecf-49fd-a74d-0c4d4910c4b1\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.3526316Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.3530277Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.3659090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.3662230Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.3781059Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.3781578Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\59bd2ba3-a081-4816-83ad-2c08f7b4f7db\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.3784389Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\59bd2ba3-a081-4816-83ad-2c08f7b4f7db\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.3785223Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.3789106Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.3904071Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.3907233Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.4012323Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.4012942Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\59321c89-aa36-496a-bed3-793365703f44\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.4016524Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\59321c89-aa36-496a-bed3-793365703f44\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.4017405Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.4021234Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.4165515Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.4173578Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.4290777Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.4291281Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\59b284da-e146-490f-9af5-036276592abc\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.4294838Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\59b284da-e146-490f-9af5-036276592abc\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.4295877Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.4300650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.4427564Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.4430940Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.4543638Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.4544325Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\589aa64d-02a0-4c38-af12-d27a4707ff4a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.4547446Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\589aa64d-02a0-4c38-af12-d27a4707ff4a\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.4548917Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.4553225Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.4677193Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.4680854Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.4809234Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.4809895Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fd522e65-318b-4dab-885e-8b5a109b6e69\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.4813221Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fd522e65-318b-4dab-885e-8b5a109b6e69\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.4814165Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.4818502Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.4950278Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.4953671Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.5067725Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.5068338Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b5b08915-9813-46bf-9387-ba579c00b10e\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.5071374Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b5b08915-9813-46bf-9387-ba579c00b10e\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.5072337Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.5076618Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.5202744Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.5205886Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.5310614Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.5311112Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2ce3ec80-2a22-4005-a320-7300c14a197d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.5314053Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2ce3ec80-2a22-4005-a320-7300c14a197d\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.5314907Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.5318796Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.5443144Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.5446308Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.5553835Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.5554450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ac43103f-c206-44b4-bb58-ae5597226017\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.5557394Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ac43103f-c206-44b4-bb58-ae5597226017\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.5558270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.5562225Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.5680530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.5683652Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.5784109Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.5784639Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\accd478d-6ad2-40af-9b10-cd3b879d6f90\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.5787602Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\accd478d-6ad2-40af-9b10-cd3b879d6f90\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.5788412Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.5792225Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.5906082Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.5909166Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.6019581Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.6020223Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b5b49031-416f-41f8-b404-f784b219fddb\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.6023142Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b5b49031-416f-41f8-b404-f784b219fddb\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.6023971Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.6027924Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.6143928Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.6147031Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.6257874Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.6258435Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6108d674-3156-4b90-a592-b4cb9505e844\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.6261625Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6108d674-3156-4b90-a592-b4cb9505e844\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.6262579Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.6267169Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.6400072Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.6403588Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.6522361Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.6523031Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9754db6a-5a81-4fdf-8e45-797d7a8e3342\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.6526375Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9754db6a-5a81-4fdf-8e45-797d7a8e3342\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.6527336Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.6531758Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.6668525Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.6672142Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.6808654Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.6809301Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9097d887-c0bf-4325-82f0-94107ff46acc\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.6812431Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9097d887-c0bf-4325-82f0-94107ff46acc\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.6813343Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.6817653Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.6950239Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.6953639Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.7071530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.7072192Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d869489e-ebb3-4647-899e-2bb7c704bea9\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.7075432Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d869489e-ebb3-4647-899e-2bb7c704bea9\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.7076379Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.7080700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.7223301Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.7226813Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.7334993Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.7335545Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b1350af5-b8d5-4ad9-96c8-5283c2f9c7ae\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.7338795Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b1350af5-b8d5-4ad9-96c8-5283c2f9c7ae\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.7339731Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.7344105Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.7492281Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.7495517Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.7597234Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.7597829Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1f5bf794-185e-41e7-a7a1-d5845b7beba8\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.7600584Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1f5bf794-185e-41e7-a7a1-d5845b7beba8\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.7601425Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.7605190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.7723115Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.7726390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.7830152Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.7830803Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4a281599-33d4-440a-9bb3-dd6bac6f6fdb\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.7833783Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4a281599-33d4-440a-9bb3-dd6bac6f6fdb\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.7834636Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.7838567Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.7959487Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.7962778Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.8069818Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.8070419Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d007559a-68d4-4a2f-8397-12b2305de17b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.8073364Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d007559a-68d4-4a2f-8397-12b2305de17b\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.8074209Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.8078202Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.8204627Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.8208612Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.8328447Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.8329217Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\05e32769-1005-43dc-8a3c-157ec1e78c32\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.8332829Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\05e32769-1005-43dc-8a3c-157ec1e78c32\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.8333770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.8338100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.8505166Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.8509663Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.8650151Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.8651040Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\932b6d3a-ff6f-416e-8d61-feef83113712\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.8654730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\932b6d3a-ff6f-416e-8d61-feef83113712\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.8655776Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.8660807Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.8806563Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.8810832Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.8948667Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.8949439Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9adb4716-4c11-4408-be70-d54ab1d2acb1\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.8953816Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9adb4716-4c11-4408-be70-d54ab1d2acb1\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.8955019Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.8971647Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.9121008Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.9147103Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.9297940Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.9298813Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e592be49-24c6-4e65-89e3-5360855f8a45\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.9303018Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e592be49-24c6-4e65-89e3-5360855f8a45\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.9304286Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.9309751Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.9497061Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.9501610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.9646595Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.9647298Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\371e2a43-88dd-4f11-955c-bf2f20d3edcb\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.9651362Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\371e2a43-88dd-4f11-955c-bf2f20d3edcb\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.9652612Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.9658062Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.9829704Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:35.9835078Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.0023085Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.0024175Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9ba6596b-28ac-4972-af16-0a52e61a8dd6\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.0029702Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9ba6596b-28ac-4972-af16-0a52e61a8dd6\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.0031334Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.0038630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.0286384Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.0292971Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.0481063Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.0482055Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4d559a8f-699a-4036-9256-f4f0bc6fa7f0\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.0487626Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4d559a8f-699a-4036-9256-f4f0bc6fa7f0\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.0489264Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.0496489Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.0739025Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.0743835Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.0761076Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WinUIUnnecessaryFilesUpdater","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:35:36.0764332Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Remove unnecessary files","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsDesktopUpdateStep"} +{"@t":"2022-11-15T22:35:36.0813885Z","@mt":"Deleting C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\Properties\\AssemblyInfo.cs as it is not required for Windows App SDK projects.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WinUIUnnecessaryFilesUpdater"} +{"@t":"2022-11-15T22:35:36.0835135Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Remove unnecessary files","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsDesktopUpdateStep"} +{"@t":"2022-11-15T22:35:36.0958486Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.0959197Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5345739a-079b-463b-b2c3-9dd1b204bdd4\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.0966985Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5345739a-079b-463b-b2c3-9dd1b204bdd4\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.0968035Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.0973094Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.1100190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.1103423Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.1221468Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.1222050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d344ec58-4ec9-499a-8261-1a3a24b3b13e\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.1224904Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d344ec58-4ec9-499a-8261-1a3a24b3b13e\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.1225779Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.1229722Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.1350990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.1354276Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.1469651Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.1470225Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ba4b387c-3c40-482c-bc5e-b5bdb24c7089\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.1473000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ba4b387c-3c40-482c-bc5e-b5bdb24c7089\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.1473866Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.1477756Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.1590994Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.1594045Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.1711483Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.1712067Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\207b18cd-7efa-4624-b78e-814c8d4579c4\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.1715886Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\207b18cd-7efa-4624-b78e-814c8d4579c4\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.1716938Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.1721725Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.1869818Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.1874765Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.2030767Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.2031756Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e2d6c37d-97f7-4a7d-b80f-3e35ad0466c1\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.2035383Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e2d6c37d-97f7-4a7d-b80f-3e35ad0466c1\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.2036479Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.2041356Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.2191166Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.2195034Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.2333807Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.2334506Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\cf1014d2-2d2b-4ce3-9aa5-740c8ca5e6e4\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.2338350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\cf1014d2-2d2b-4ce3-9aa5-740c8ca5e6e4\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.2339430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.2344300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.2510004Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.2514055Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.2638786Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.2639425Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c39e72f3-4b8c-466f-bf73-63c1c12a089d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.2642633Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c39e72f3-4b8c-466f-bf73-63c1c12a089d\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.2643562Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.2647919Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.2802232Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.2807425Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.2985712Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.2986720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\81dc72d8-4584-429a-965b-e30cbf2327f6\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.2992157Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\81dc72d8-4584-429a-965b-e30cbf2327f6\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.2993770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.3000996Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.3250617Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.3256647Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.3460041Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.3461248Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\72d3aa22-55cf-47a9-86c7-157eb4297f31\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.3466771Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\72d3aa22-55cf-47a9-86c7-157eb4297f31\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.3468351Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.3475684Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.3693561Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.3698251Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.3921827Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.3922638Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\39a01a90-24b7-40a3-82f0-6df65774e9cd\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.3927123Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\39a01a90-24b7-40a3-82f0-6df65774e9cd\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.3928408Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.3934288Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.4114491Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.4134741Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.4319118Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.4320019Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e904d585-4a32-4a89-ad1a-d1a83b27fe65\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.4324234Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e904d585-4a32-4a89-ad1a-d1a83b27fe65\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.4325468Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.4332138Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.4511601Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.4516382Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.4662913Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.4663548Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5b7d1ab2-575d-4f12-a491-2bea7f2c8eb4\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.4667180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5b7d1ab2-575d-4f12-a491-2bea7f2c8eb4\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.4668206Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.4673052Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.4794618Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.4797757Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.4946955Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.4947645Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ad1ca8f5-f3f7-4627-9afd-8c795882e92d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.4950788Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ad1ca8f5-f3f7-4627-9afd-8c795882e92d\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.4951724Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.4955909Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.5083788Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.5087126Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.5193884Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.5194422Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f7b2e8e5-255a-4511-9e03-1e9ea780b5a4\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.5197504Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f7b2e8e5-255a-4511-9e03-1e9ea780b5a4\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.5198404Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.5202544Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.5344467Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.5347867Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.5462254Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.5462922Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9ac91633-3f27-438e-a0e6-796b67e9cf49\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.5465948Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9ac91633-3f27-438e-a0e6-796b67e9cf49\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.5466876Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.5471043Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.5596910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.5600208Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.5707572Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.5708142Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\11e1a897-f54f-4e59-849b-6fe8a631231b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.5711284Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\11e1a897-f54f-4e59-849b-6fe8a631231b\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.5712193Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.5716313Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.5849953Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.5853403Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.5966266Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.5966863Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f4221e99-ba06-455d-a15a-8e38ee96b3c0\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.5969951Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f4221e99-ba06-455d-a15a-8e38ee96b3c0\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.5970828Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.5974925Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.6126804Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.6131067Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.6272316Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.6273046Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\cf9f4c23-a859-4c17-b87a-fa757113f1ac\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.6277263Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\cf9f4c23-a859-4c17-b87a-fa757113f1ac\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.6278605Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.6284524Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.6493010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.6498308Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.6651614Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.6652601Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\edd1a37d-d10f-4f8a-984c-64e0440f9fb4\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.6657213Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\edd1a37d-d10f-4f8a-984c-64e0440f9fb4\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.6658644Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.6664672Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.6865209Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.6870222Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.7012647Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.7013298Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c54b14c5-af2a-4a7e-a818-8d943ef9189a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.7017174Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c54b14c5-af2a-4a7e-a818-8d943ef9189a\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.7018286Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.7023337Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.7145632Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.7148759Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.7256330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.7256955Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\590e24d8-fae0-46fc-bd2d-06ef960f3cd2\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.7259740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\590e24d8-fae0-46fc-bd2d-06ef960f3cd2\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.7260571Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.7271680Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.7376788Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.7395479Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.7500822Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.7501297Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6eefd595-4e38-48e7-9b6f-19e3e8932370\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.7504166Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6eefd595-4e38-48e7-9b6f-19e3e8932370\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.7505014Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.7508830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.7629257Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.7632427Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.7750997Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.7751803Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\13087657-5315-4647-a979-7c71dec4e351\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.7755326Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\13087657-5315-4647-a979-7c71dec4e351\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.7756327Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.7761127Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.7949269Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.7954754Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.8109381Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.8110155Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4c015ab1-8059-4f98-89f9-a8c9a4042014\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.8114948Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4c015ab1-8059-4f98-89f9-a8c9a4042014\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.8116418Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.8122822Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.8326291Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.8331549Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.8524135Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.8525312Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1dc47826-7f73-4eac-bf56-be0657676f90\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.8530502Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1dc47826-7f73-4eac-bf56-be0657676f90\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.8531902Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.8539202Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.8743351Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.8749723Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.8937761Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.8938778Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d1e66514-38df-4c2f-b8ac-e867efe49a97\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.8944336Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d1e66514-38df-4c2f-b8ac-e867efe49a97\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.8946117Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.8953364Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.9183440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.9189672Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.9388462Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.9389937Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\91744b38-7985-45e4-8251-2fc8fcb3ae05\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.9396380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\91744b38-7985-45e4-8251-2fc8fcb3ae05\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.9398072Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.9406097Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.9651392Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.9657527Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.9839505Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.9840487Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fc1aef24-09ce-4e00-af94-e7f212a6e5c5\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.9846115Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fc1aef24-09ce-4e00-af94-e7f212a6e5c5\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.9847750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:36.9855096Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.0076818Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.0082865Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.0271241Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.0272517Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\97cedeb6-8241-4e21-8431-2e6c5ef07391\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.0277979Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\97cedeb6-8241-4e21-8431-2e6c5ef07391\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.0279518Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.0286850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.0534951Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.0541497Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.0748672Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.0749578Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3f0b3ca6-5364-489e-b7d2-b028c944f863\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.0754127Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3f0b3ca6-5364-489e-b7d2-b028c944f863\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.0755412Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.0761282Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.0916740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.0920074Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.1060827Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.1061713Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4d0f5be7-e337-49a8-987e-9a6da6322dcf\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.1065972Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4d0f5be7-e337-49a8-987e-9a6da6322dcf\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.1067194Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.1072757Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.1251973Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.1256549Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.1400347Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.1401048Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f9e39ad8-1eaf-44e5-b0f6-56873abbaf8f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.1405207Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f9e39ad8-1eaf-44e5-b0f6-56873abbaf8f\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.1406452Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.1411916Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.1599026Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.1603586Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.1752908Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.1753731Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\459b9610-05c3-4a81-912e-6c6f3d5193d2\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.1757740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\459b9610-05c3-4a81-912e-6c6f3d5193d2\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.1758953Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.1764494Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.1950366Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.1955771Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.2129206Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.2130167Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\10f485c7-6f1e-4f82-b594-a244bad8573a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.2135217Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\10f485c7-6f1e-4f82-b594-a244bad8573a\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.2136683Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.2143548Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.2352861Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.2358085Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.2530990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.2532133Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5594f647-000c-4d3c-ad03-1771c23b8eb8\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.2537124Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5594f647-000c-4d3c-ad03-1771c23b8eb8\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.2538525Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.2544957Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.2739982Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.2745966Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.2909803Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.2910665Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9363edb3-ca48-46a4-9072-d5e9366fa4e0\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.2915134Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9363edb3-ca48-46a4-9072-d5e9366fa4e0\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.2916235Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.2921564Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.3114957Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.3119248Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.3269471Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.3270274Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\04ca5f82-d6de-4fd7-98ce-6d8ff77aa8b4\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.3274183Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\04ca5f82-d6de-4fd7-98ce-6d8ff77aa8b4\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.3275321Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.3280663Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.3420574Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.3423671Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.3563876Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.3564525Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c0410806-915a-44ec-bf15-64977c8badcb\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.3567746Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c0410806-915a-44ec-bf15-64977c8badcb\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.3568642Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.3572659Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.3704695Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.3708358Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.3831976Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.3832698Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\61ae2324-04ea-4cd4-8be2-59e0d8b7d94c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.3835686Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\61ae2324-04ea-4cd4-8be2-59e0d8b7d94c\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.3836541Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.3840504Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.3966537Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.3969800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.4081651Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.4082140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ed55fa43-adf0-48b3-a212-b5b7e02df485\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.4085088Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ed55fa43-adf0-48b3-a212-b5b7e02df485\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.4085951Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.4089811Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.4220362Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.4223538Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.4347198Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.4347862Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\06b11235-87a1-44a4-823f-09ca6d75d2f9\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.4350815Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\06b11235-87a1-44a4-823f-09ca6d75d2f9\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.4351687Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.4355676Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.4483854Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.4487122Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.4615273Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.4615822Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b8797a5a-b872-4112-a7b2-6b1b7f3ecad5\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.4619043Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b8797a5a-b872-4112-a7b2-6b1b7f3ecad5\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.4620032Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.4624335Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.4768801Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.4772347Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.4785043Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsDesktopUpdateStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:35:37.4787404Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Update Windows Desktop Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsDesktopUpdateStep"} +{"@t":"2022-11-15T22:35:37.4942343Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.4943329Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d18ba06e-4ca5-4c01-8587-5ea8da915454\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.4946737Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d18ba06e-4ca5-4c01-8587-5ea8da915454\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.4947669Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.4952058Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.5085144Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.5088708Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.5216603Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.5217193Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b67d03ce-3463-4161-91fb-0adaf9650bbc\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.5220169Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b67d03ce-3463-4161-91fb-0adaf9650bbc\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.5221046Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.5224960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.5352856Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.5356092Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.5477643Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.5478235Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\229a795c-e853-4af9-a00b-526da1ea7a75\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.5481184Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\229a795c-e853-4af9-a00b-526da1ea7a75\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.5482028Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.5485885Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.5609165Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.5612249Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.5728895Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.5729485Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6a6c5c4d-973f-4ae5-813b-90f68815e857\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.5732435Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6a6c5c4d-973f-4ae5-813b-90f68815e857\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.5733306Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.5745005Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.5847216Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.5865138Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.5970944Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.5971590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\737d2092-da5f-4f1a-9a2c-5c86614dcc6a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.5974386Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\737d2092-da5f-4f1a-9a2c-5c86614dcc6a\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.5975169Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.5979008Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.6096095Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.6099173Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.6202852Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.6203374Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\822ad05c-12fe-4451-a902-a7a747e86c2b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.6206272Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\822ad05c-12fe-4451-a902-a7a747e86c2b\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.6207123Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.6211045Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.6332820Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.6336563Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.6457210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.6457934Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e9c92269-ec12-49d5-a905-35b83388290a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.6460998Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e9c92269-ec12-49d5-a905-35b83388290a\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.6461858Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.6466294Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.6646737Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.6652164Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.6800046Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.6800902Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8a429000-e396-46f7-abe9-d66bba9b27de\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.6805581Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8a429000-e396-46f7-abe9-d66bba9b27de\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.6807052Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.6813363Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.7014595Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.7020075Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.7181340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.7182270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\10b579cf-264f-4b8a-a2c6-cc7cd899d1dc\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.7186985Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\10b579cf-264f-4b8a-a2c6-cc7cd899d1dc\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.7188363Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.7194989Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.7416096Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.7421589Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.7580366Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.7581393Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\bdc0bef7-c0dd-4cc4-b268-6900c60e6d3d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.7586920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\bdc0bef7-c0dd-4cc4-b268-6900c60e6d3d\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.7588552Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.7595799Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.7821165Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.7826473Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.7985160Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.7986117Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d265c9be-3e38-4d10-aecd-1531097f4803\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.7990495Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d265c9be-3e38-4d10-aecd-1531097f4803\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.7991740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.7997560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.8188062Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.8192829Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.8331992Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.8332752Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\717f206e-c1ff-4ec9-9245-b0287635c348\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.8337168Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\717f206e-c1ff-4ec9-9245-b0287635c348\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.8338460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.8344210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.8537930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.8543704Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.8757111Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.8758226Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fd98b21f-5dfc-4348-a3bb-ce2999c663ec\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.8763655Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fd98b21f-5dfc-4348-a3bb-ce2999c663ec\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.8765098Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.8771975Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.9016152Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.9022084Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.9201770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.9202637Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f154764e-800f-42d9-8e0a-5cd1f767d39f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.9207795Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f154764e-800f-42d9-8e0a-5cd1f767d39f\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.9209332Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.9216080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.9391640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.9395464Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.9412629Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Update Windows Desktop Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsDesktopUpdateStep"} +{"@t":"2022-11-15T22:35:37.9554429Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.9555307Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3e0268ca-ee95-4ff0-a3ce-fa6ce4b0d029\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.9559522Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3e0268ca-ee95-4ff0-a3ce-fa6ce4b0d029\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.9560671Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.9571517Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.9793655Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.9796904Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.9915573Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.9916131Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0e764515-896e-4f73-9b72-f24a575578b4\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.9919064Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0e764515-896e-4f73-9b72-f24a575578b4\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.9919914Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:37.9923799Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.0042709Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.0045968Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.0155385Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.0155960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1fe7f53e-6b42-48b6-bffb-b79720305c8b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.0158905Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1fe7f53e-6b42-48b6-bffb-b79720305c8b\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.0159756Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.0163686Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.0281000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.0284139Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.0392616Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.0393168Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7c9397ca-3d35-450c-b2b6-e927f5e2f9a0\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.0396175Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7c9397ca-3d35-450c-b2b6-e927f5e2f9a0\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.0397056Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.0401003Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.0528105Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.0531339Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.0641824Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.0642436Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\577aab07-3e3b-4f3a-8020-50ad46902f8e\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.0645297Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\577aab07-3e3b-4f3a-8020-50ad46902f8e\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.0646147Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.0650113Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.0783253Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.0786457Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.0896925Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.0897417Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5520a40e-7058-4eaa-b5b7-981ad28ac629\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.0900252Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5520a40e-7058-4eaa-b5b7-981ad28ac629\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.0901094Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.0904933Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.1019468Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.1022707Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.1158730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.1159449Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f0b0ff34-cf1b-4d93-b833-59c221221046\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.1166961Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f0b0ff34-cf1b-4d93-b833-59c221221046\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.1167958Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.1171909Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.1316983Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.1320173Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.1424150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.1424679Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7832a8ce-8df8-479e-b4ed-b43d016a4f68\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.1427646Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7832a8ce-8df8-479e-b4ed-b43d016a4f68\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.1428500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.1432399Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.1569627Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.1572904Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.1728729Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.1729441Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2166243c-0603-4467-9253-1fb167a74e20\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.1733460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2166243c-0603-4467-9253-1fb167a74e20\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.1734358Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.1738500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.1863022Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.1866308Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.1996680Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.1997375Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7bb1c4a9-c017-4ef6-99dd-78a6c8c3ec6b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.2000600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7bb1c4a9-c017-4ef6-99dd-78a6c8c3ec6b\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.2001540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.2005951Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.2155361Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.2158887Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.2310324Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.2311063Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\76bce263-618b-454c-a170-72bbf0e41078\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.2314445Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\76bce263-618b-454c-a170-72bbf0e41078\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.2315422Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.2319896Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.2452966Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.2456648Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.2599773Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.2600665Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\19a8c8c1-b19a-4762-98bc-9931dc05308c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.2604740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\19a8c8c1-b19a-4762-98bc-9931dc05308c\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.2605872Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.2610822Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.2759709Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.2763718Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.2944777Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.2945708Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\de08529b-2e79-40c5-a4fb-8efefd60c684\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.2949975Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\de08529b-2e79-40c5-a4fb-8efefd60c684\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.2951152Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.2956708Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.3151604Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.3156295Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.3317318Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.3318113Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\347970b3-0ec4-45a5-a41a-09c253bd9722\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.3322915Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\347970b3-0ec4-45a5-a41a-09c253bd9722\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.3324371Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.3330691Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.3536335Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.3543367Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.3771416Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.3772680Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\66cbbb82-dc77-49fe-8ee3-19aaa37034d8\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.3780672Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\66cbbb82-dc77-49fe-8ee3-19aaa37034d8\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.3782321Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.3803873Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.4001023Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.4036337Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.4227270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.4228306Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\39361735-6876-4626-a092-544a65694ca2\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.4233667Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\39361735-6876-4626-a092-544a65694ca2\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.4235279Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.4242511Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.4484135Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.4490369Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.4511865Z","@mt":"Resetting upgrade step {UpgradeStep} because upgrade context has changed significantly since it was initialized","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.CodeFixerStep:UA0002","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:35:38.4512531Z","@mt":"Resetting upgrade step {UpgradeStep} because upgrade context has changed significantly since it was initialized","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:35:38.4678232Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.4679403Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\59020a35-f300-4788-8911-344e96925770\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.4684736Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\59020a35-f300-4788-8911-344e96925770\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.4686275Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.4693536Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.4924173Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.4930262Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.5117486Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.5118506Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\00e7c70f-6fcf-411a-bc67-f493aef9c5e3\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.5124041Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\00e7c70f-6fcf-411a-bc67-f493aef9c5e3\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.5125710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.5132916Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.5365536Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.5371445Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.5601947Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.5603123Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9327bf8d-f22e-42f2-a7f2-468479f111b7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.5608461Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9327bf8d-f22e-42f2-a7f2-468479f111b7\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.5610105Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.5617264Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.5841131Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.5847286Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.6061908Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.6062907Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\36dce11b-8024-4dff-be4e-de3d0f6c1143\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.6069317Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\36dce11b-8024-4dff-be4e-de3d0f6c1143\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.6070967Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.6078193Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.6313925Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.6319968Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.6531259Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.6532452Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f0a07ebc-202f-4082-aac1-8ce5a2f806d9\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.6538221Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f0a07ebc-202f-4082-aac1-8ce5a2f806d9\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.6539789Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.6547043Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.6775279Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.6781362Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.6984009Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.6985068Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\dedcfb61-b822-4275-a250-7b304ddde8c0\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.6990908Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\dedcfb61-b822-4275-a250-7b304ddde8c0\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.6992601Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.6999792Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.7219704Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.7225816Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.7446428Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.7447640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2601846d-a456-4b1b-af20-1e3de4c7edd8\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.7453292Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2601846d-a456-4b1b-af20-1e3de4c7edd8\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.7454886Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.7462266Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.7719366Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.7727078Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.8023460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.8024885Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fc1f65ad-e165-4005-ac42-e09ebd716261\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.8031738Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fc1f65ad-e165-4005-ac42-e09ebd716261\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.8033722Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.8043310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.8334163Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.8341735Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.8575218Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.8576959Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2364db7c-5723-4129-afaf-2a700ed2a60b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.8584576Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2364db7c-5723-4129-afaf-2a700ed2a60b\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.8586612Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.8596278Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.8954634Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.8962618Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.9175708Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.9176954Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5b0180e1-6e76-4fe5-a7fe-af94a8265667\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.9183781Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5b0180e1-6e76-4fe5-a7fe-af94a8265667\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.9185889Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.9195088Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.9496333Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.9504114Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.9766408Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.9767847Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c98f9d30-f808-416a-bb7f-a630c295039f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.9774886Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c98f9d30-f808-416a-bb7f-a630c295039f\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.9776950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:38.9786022Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.0072561Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.0080221Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.0303835Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.0305334Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4bf620ad-153c-420e-baeb-cc0bbdf357c5\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.0312846Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4bf620ad-153c-420e-baeb-cc0bbdf357c5\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.0314984Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.0324275Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.0626249Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.0634077Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.0867391Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.0868870Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8c1a8943-b938-4da3-a93d-9c0d464e0d9c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.0875417Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8c1a8943-b938-4da3-a93d-9c0d464e0d9c\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.0877320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.0886762Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.1204533Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.1212662Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.1444658Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.1445893Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b199422e-3b39-4068-84ea-f8f518d7e96e\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.1452878Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b199422e-3b39-4068-84ea-f8f518d7e96e\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.1454913Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.1464095Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.1788950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.1796879Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.2046087Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.2047614Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6a35e052-5ee7-4227-bd2d-f72f2b821d95\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.2054597Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6a35e052-5ee7-4227-bd2d-f72f2b821d95\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.2056683Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.2065814Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.2364389Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.2372263Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.2682704Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.2684127Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6187218a-6af2-4fa4-9172-d45f6b03c3ef\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.2690902Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6187218a-6af2-4fa4-9172-d45f6b03c3ef\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.2692983Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.2702150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.3000524Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.3008167Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.3280234Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.3281670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c2655e7f-f96c-4fdd-9eda-bfe2c4727f22\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.3288875Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c2655e7f-f96c-4fdd-9eda-bfe2c4727f22\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.3290904Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.3300218Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.3605420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.3612857Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.3887301Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.3888569Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f34a2ad4-94b7-4813-926f-799532849979\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.3895573Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f34a2ad4-94b7-4813-926f-799532849979\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.3897701Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.3907122Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.4201090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.4208756Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.4447479Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.4448903Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\cdcc442c-f7bf-47c9-82b9-ca272487df48\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.4455820Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\cdcc442c-f7bf-47c9-82b9-ca272487df48\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.4457812Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.4466956Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.4761871Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.4769455Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.5024606Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.5025870Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b47e1445-6c95-4f09-baf4-b92faf25967b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.5032678Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b47e1445-6c95-4f09-baf4-b92faf25967b\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.5034724Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.5043827Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.5336002Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.5343630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.5599718Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.5601205Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\17dca238-09c0-4370-9a33-59c5ecdffcd5\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.5608133Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\17dca238-09c0-4370-9a33-59c5ecdffcd5\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.5610090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.5619150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.5898925Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.5906433Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.6135903Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.6137178Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3e0ce53f-4c9b-43da-9379-a3e18efe7ada\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.6144336Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3e0ce53f-4c9b-43da-9379-a3e18efe7ada\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.6146338Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.6155530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.6451222Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.6458793Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.6694735Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.6696239Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\baf88535-a792-4ce8-a1ac-c3489bfb1fa2\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.6703196Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\baf88535-a792-4ce8-a1ac-c3489bfb1fa2\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.6705236Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.6714281Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.7000219Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.7007791Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.7273215Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.7274551Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\015a9684-5283-47f5-af23-e8392a963c1e\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.7281432Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\015a9684-5283-47f5-af23-e8392a963c1e\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.7283414Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.7311826Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.7569281Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.7576820Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.7859234Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.7860861Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\133a083c-f2cc-4175-81b7-c107e274021a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.7868928Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\133a083c-f2cc-4175-81b7-c107e274021a\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.7871902Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.7881859Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.8176796Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.8184503Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.8460521Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.8461868Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2a865fa3-97b3-4e58-ab7d-18b4273e81b8\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.8468923Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2a865fa3-97b3-4e58-ab7d-18b4273e81b8\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.8470994Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.8480556Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.8755364Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.8760810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.8882248Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.8882926Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\325bfd4b-18ca-432e-bac2-3666791092e3\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.8885842Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\325bfd4b-18ca-432e-bac2-3666791092e3\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.8886666Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.8890627Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.9014996Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.9018174Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.9132910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.9133440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9d82083c-e4df-4064-a6d7-66a07f9999f9\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.9136343Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9d82083c-e4df-4064-a6d7-66a07f9999f9\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.9137177Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.9141312Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.9269141Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.9272327Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.9413375Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.9414041Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f285d42f-921d-4854-a012-e63e2a77fb3a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.9416972Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f285d42f-921d-4854-a012-e63e2a77fb3a\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.9417765Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.9421555Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.9547111Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.9550224Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.9661021Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.9661565Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8e24b750-a043-40a8-b111-1f5f29050ca2\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.9664560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8e24b750-a043-40a8-b111-1f5f29050ca2\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.9665382Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.9669235Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.9797308Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.9800558Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.9812712Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Update source code","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:35:39.9836313Z","@mt":"Opening project {ProjectPath}","@l":"Debug","ProjectPath":"C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:35:39.9836619Z","@mt":"Running analyzers on {ProjectName}","ProjectName":"PlantLady.UWP","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.RoslynDiagnosticProvider"} +{"@t":"2022-11-15T22:35:39.9957849Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.9958685Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\69b46b0a-a318-48db-a82a-ff17880fba13\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.9961780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\69b46b0a-a318-48db-a82a-ff17880fba13\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.9962609Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:39.9966538Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.0090207Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.0093660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.0220698Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.0221366Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9ff6cfeb-80e0-4828-81db-ad6ba3cdc256\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.0225103Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9ff6cfeb-80e0-4828-81db-ad6ba3cdc256\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.0226151Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.0241882Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.0387725Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.0414401Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.0575310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.0576207Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c80f7274-81a1-42b0-81c0-5d0e95a04e54\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.0580414Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c80f7274-81a1-42b0-81c0-5d0e95a04e54\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.0581570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.0586954Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.0756808Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.0761281Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.0895209Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.0895886Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\686846f6-0251-4ee5-ab78-a505bb25a34e\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.0900039Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\686846f6-0251-4ee5-ab78-a505bb25a34e\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.0901210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.0906646Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.1056890Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.1060120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.1178513Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.1179145Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\85612b2b-f363-4d3c-b87a-b4fc88c73a66\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.1182152Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\85612b2b-f363-4d3c-b87a-b4fc88c73a66\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.1182989Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.1186903Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.1402715Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.1415084Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.1546408Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.1546893Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b32d94d8-78e6-4986-ae7e-e8f548e3bed7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.1549765Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b32d94d8-78e6-4986-ae7e-e8f548e3bed7\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.1550585Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.1554885Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.1682782Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.1686065Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.1805014Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.1805673Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\47e9e344-8884-4bd8-a0b9-6e2544afc42d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.1808658Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\47e9e344-8884-4bd8-a0b9-6e2544afc42d\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.1809495Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.1813406Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.1938794Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.1941924Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.2042211Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.2042667Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\111cc12c-14fc-430a-a7cd-5a651455a685\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.2045452Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\111cc12c-14fc-430a-a7cd-5a651455a685\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.2046268Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.2050014Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.2165997Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.2169153Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.2270438Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.2270987Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b61ecb76-e22e-430b-ba30-7b0c8c9caf4f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.2273891Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b61ecb76-e22e-430b-ba30-7b0c8c9caf4f\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.2274728Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.2278580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.2396369Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.2399552Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.2503244Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.2503769Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\826700b5-dcc8-41f2-b099-4826f5c754ba\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.2506579Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\826700b5-dcc8-41f2-b099-4826f5c754ba\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.2507372Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.2511179Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.2628250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.2631632Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.2743730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.2744387Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fd08b218-7b1c-4e92-b0f6-bf7e41fc2ea9\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.2747170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fd08b218-7b1c-4e92-b0f6-bf7e41fc2ea9\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.2747953Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.2751754Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.2886388Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.2889462Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.2990336Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.2990817Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\80a0d213-1a94-46dd-9d07-2d8546a8aef7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.2993785Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\80a0d213-1a94-46dd-9d07-2d8546a8aef7\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.2994606Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.2998372Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.3116531Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.3119639Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.3227996Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.3228589Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1cd5fd41-1ad2-4bc6-94d8-0883fe146b9c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.3231412Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1cd5fd41-1ad2-4bc6-94d8-0883fe146b9c\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.3232229Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.3235989Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.3353333Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.3356446Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.3462344Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.3462893Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\036cfb1b-b333-4d62-81e8-b8f036325296\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.3465957Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\036cfb1b-b333-4d62-81e8-b8f036325296\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.3466848Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.3470998Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.3599652Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.3603061Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.3709815Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.3710414Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0694a3dd-485f-4612-af0c-daed9e351ee9\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.3713611Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0694a3dd-485f-4612-af0c-daed9e351ee9\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.3714525Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.3718881Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.3884828Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.3888332Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.3995970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.3996632Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\85959c7d-89e5-4ed5-b119-f5fc0a0fb70b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.4000063Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\85959c7d-89e5-4ed5-b119-f5fc0a0fb70b\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.4001033Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.4005409Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.4146587Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.4150325Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.4273675Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.4274413Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e8b2821a-0d9f-4d52-8b0c-08f0282f0ece\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.4277786Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e8b2821a-0d9f-4d52-8b0c-08f0282f0ece\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.4278744Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.4283206Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.4399439Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.4402684Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.4508210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.4508684Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\45430819-c562-4923-93b2-c94a56cb0daf\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.4511644Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\45430819-c562-4923-93b2-c94a56cb0daf\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.4512480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.4516297Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.4632393Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.4635735Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.4766549Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.4767239Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2b484965-3908-4f91-b347-7c1164a69a0b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.4770224Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2b484965-3908-4f91-b347-7c1164a69a0b\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.4771079Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.4774977Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.4908495Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.4911699Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.5020993Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.5021520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\66cdfbc7-7517-49b9-9db7-13597bb93eb0\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.5024362Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\66cdfbc7-7517-49b9-9db7-13597bb93eb0\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.5025192Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.5029069Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.5164599Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.5167716Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.5284242Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.5284822Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0c00ac11-7cfb-4fd7-bbab-6d610a4dd8ac\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.5287652Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0c00ac11-7cfb-4fd7-bbab-6d610a4dd8ac\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.5288489Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.5292504Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.5416541Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.5419682Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.5526945Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.5527507Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\57a7081b-1064-443f-a1fb-2f6c0914fc1b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.5530319Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\57a7081b-1064-443f-a1fb-2f6c0914fc1b\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.5531117Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.5534983Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.5651769Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.5655000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.5779798Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.5780563Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a94ad478-4f62-4a8b-82f5-698e87c4d808\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.5783620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a94ad478-4f62-4a8b-82f5-698e87c4d808\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.5784431Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.5788467Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.5909044Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.5912291Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.6039354Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.6040075Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c7273d36-ea8a-4bef-b833-06688e5417d7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.6043464Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c7273d36-ea8a-4bef-b833-06688e5417d7\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.6044274Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.6048047Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.6193713Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.6197184Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.6333906Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.6334615Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e85f9437-e7f2-495e-b901-0de4d444eb8e\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.6338347Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e85f9437-e7f2-495e-b901-0de4d444eb8e\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.6339202Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.6343154Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.6493833Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.6497818Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.6649465Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.6650107Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d54c753d-fabb-41b2-b6ce-1b1d2be83c3a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.6653517Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d54c753d-fabb-41b2-b6ce-1b1d2be83c3a\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.6654473Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.6658919Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.6794413Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.6798082Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.6927427Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.6928038Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a17734ab-cfb4-457f-90c2-4049f0a2e4dc\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.6936976Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a17734ab-cfb4-457f-90c2-4049f0a2e4dc\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.6937895Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.6941862Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.7061060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.7064329Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.7188929Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.7189732Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e91d79f2-5387-479f-b32e-622b48645030\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.7193123Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e91d79f2-5387-479f-b32e-622b48645030\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.7194200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.7198482Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.7354287Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.7358314Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.7501542Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.7502486Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9b2a8bd2-989c-41e1-bfd1-0f1a573c0967\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.7506573Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9b2a8bd2-989c-41e1-bfd1-0f1a573c0967\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.7507598Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.7512400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.7666977Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.7671243Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.7822939Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.7823689Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3591910a-90d1-429a-8d08-bc6e86969230\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.7827640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3591910a-90d1-429a-8d08-bc6e86969230\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.7828794Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.7834772Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.8005085Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.8009814Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.8144292Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.8145250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\eb8393af-d857-41a1-ade2-5703f36342c8\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.8149386Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\eb8393af-d857-41a1-ade2-5703f36342c8\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.8150570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.8156046Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.8349740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.8354583Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.8489762Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.8490703Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d3995d83-d66f-4a7c-89ee-dd8dcfb5b66f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.8495544Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d3995d83-d66f-4a7c-89ee-dd8dcfb5b66f\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.8496716Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.8502481Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.8671961Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:40.8676439Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:41.9163321Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Could not find file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\Properties\\AssemblyInfo.cs'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:35:42.0459264Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-11-15T22:35:42.0470611Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-11-15T22:35:42.0474786Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-11-15T22:35:42.0483542Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-11-15T22:35:42.0494439Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-11-15T22:35:42.0501838Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-11-15T22:35:42.0526641Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-11-15T22:35:42.3184905Z","@mt":"Identified {DiagnosticCount} diagnostics in project {ProjectName}","DiagnosticCount":0,"ProjectName":"PlantLady.UWP","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.RoslynDiagnosticProvider"} +{"@t":"2022-11-15T22:35:42.3214178Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0001","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:35:42.3215642Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0002","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:35:42.3215862Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0005","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:35:42.3216020Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0006","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:35:42.3216156Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0007","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:35:42.3216289Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0008","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:35:42.3216443Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0010","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:35:42.3216616Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0012","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:35:42.3216780Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0014","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:35:42.3216924Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0015","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:35:42.3217105Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"[UA306_A1, UA306_A2, UA306_A3, UA306_A4, UA306_B, UA306_C, UA306_D, UA306_E, UA306_F, UA306_G, UA306_H, UA306_I]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:35:42.3217252Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA307","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:35:42.3217381Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA309","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:35:42.3217505Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA310","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:35:42.3217638Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA311","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:35:42.3217766Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA312","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:35:42.3217900Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"[UA313, UA314]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:35:42.3218083Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"[UA315_A, UA315_C, UA315_B]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:35:42.3218805Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Update source code","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:35:42.3338443Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.3339114Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7e612940-7afb-49e3-8083-b6e202b16e7d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.3343441Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7e612940-7afb-49e3-8083-b6e202b16e7d\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.3344360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.3348376Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.3493919Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.3497184Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.3637244Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.3637965Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ba5bb327-61ce-4d78-9e9d-ea4b5dec8548\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.3641395Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ba5bb327-61ce-4d78-9e9d-ea4b5dec8548\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.3642257Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.3646281Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.3782724Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.3785980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.3911202Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.3911906Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fa20ffcd-f1a5-4e0a-8a97-fd68efba5985\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.3914863Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fa20ffcd-f1a5-4e0a-8a97-fd68efba5985\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.3915697Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.3921007Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.4291258Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.4294803Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.4527134Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.4527791Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a380fb2d-d305-4bb9-be7f-e33e89a01907\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.4531006Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a380fb2d-d305-4bb9-be7f-e33e89a01907\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.4531855Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.4536030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.4847594Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.4850923Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.4968830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.4969515Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7ee0c437-3f63-4949-b7ba-00c1f7592601\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.4972583Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7ee0c437-3f63-4949-b7ba-00c1f7592601\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.4973425Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.4977499Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.5106626Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.5109885Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.5230359Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.5230953Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\45ae9fd7-fbb4-47c5-ae23-d7a9f38a385b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.5233930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\45ae9fd7-fbb4-47c5-ae23-d7a9f38a385b\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.5234779Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.5238889Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.5389097Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.5392385Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.5510985Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.5511754Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\527eec25-cb5a-4f4a-b70d-b0f3264a5004\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.5515388Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\527eec25-cb5a-4f4a-b70d-b0f3264a5004\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.5516232Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.5520184Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.5638667Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.5641977Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.5778716Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.5779490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\bb8c4dbc-eded-4436-9062-2e6620b15ddf\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.5782577Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\bb8c4dbc-eded-4436-9062-2e6620b15ddf\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.5783411Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.5787391Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.5922374Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.5925877Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.6042247Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.6042921Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b97f1d18-5c7c-4bdb-ab88-7ab7c12aed85\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.6045924Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b97f1d18-5c7c-4bdb-ab88-7ab7c12aed85\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.6046746Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.6050669Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.6175177Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.6178716Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.6291090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.6291689Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4becfe89-36d7-4924-b9ab-22041fd8c15d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.6295630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4becfe89-36d7-4924-b9ab-22041fd8c15d\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.6296707Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.6301454Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.6421157Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.6424382Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.6537748Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.6538427Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c21c7a95-3154-476e-be24-0cf17223abec\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.6541475Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c21c7a95-3154-476e-be24-0cf17223abec\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.6542394Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.6546396Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.6668100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.6671476Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.6782757Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.6783373Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a0390bc5-78e4-4452-ad53-b31e6049b086\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.6786405Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a0390bc5-78e4-4452-ad53-b31e6049b086\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.6787274Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.6791372Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.6916325Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.6919580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.7032810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.7033560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\01fd0124-a71a-438d-a00c-b8471fe885ed\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.7036598Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\01fd0124-a71a-438d-a00c-b8471fe885ed\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.7037572Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.7041620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.7162637Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.7166017Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.7279245Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.7279847Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3e07775f-ad2b-4c2b-9a82-932ec0b32f65\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.7282919Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3e07775f-ad2b-4c2b-9a82-932ec0b32f65\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.7283805Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.7287806Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.7410083Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.7413381Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.7527052Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.7527752Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5cd0d7c2-9501-4da0-bd2a-790eb5f6048d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.7530878Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5cd0d7c2-9501-4da0-bd2a-790eb5f6048d\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.7531740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.7535704Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.7651769Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.7655178Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.7791976Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.7792617Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f5acbd9b-3816-4dd8-a7d2-4fcd8c8738b7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.7795683Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f5acbd9b-3816-4dd8-a7d2-4fcd8c8738b7\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.7796535Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.7800558Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.7927719Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.7930992Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.8062334Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.8063022Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\cbb2ae90-d977-4670-abee-1dc4918d8c64\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.8065909Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\cbb2ae90-d977-4670-abee-1dc4918d8c64\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.8066736Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.8070704Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.8197028Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.8200305Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.8331166Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.8331888Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b89626f1-9541-4d8a-b248-62563107c34a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.8335113Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b89626f1-9541-4d8a-b248-62563107c34a\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.8335983Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.8340009Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.8467809Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.8471017Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.8601729Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.8602407Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c592ce6c-ca18-4e32-a29b-2f132ce8626c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.8605339Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c592ce6c-ca18-4e32-a29b-2f132ce8626c\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.8606213Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.8610134Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.8729466Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.8732762Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.8849447Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.8850044Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5d224e36-320e-455b-b358-280fd3580ce1\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.8853061Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5d224e36-320e-455b-b358-280fd3580ce1\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.8853906Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.8857831Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.8987626Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.8991039Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.9111167Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.9112130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a79a3e70-3d46-43bd-b667-c13e76acd508\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.9115517Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a79a3e70-3d46-43bd-b667-c13e76acd508\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.9116330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.9120431Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.9240075Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.9243333Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.9350287Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.9350839Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2662348a-03a3-4c96-8ecd-f01552292ac1\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.9353685Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2662348a-03a3-4c96-8ecd-f01552292ac1\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.9354518Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.9358409Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.9479525Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.9482749Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.9591065Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.9591776Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\288c84e3-6b84-431f-b036-14385cf938b1\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.9594645Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\288c84e3-6b84-431f-b036-14385cf938b1\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.9595602Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.9599793Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.9712652Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.9715868Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.9817059Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.9817640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a66ad1e8-101a-4f0f-8693-54abdb15c9cd\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.9820740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a66ad1e8-101a-4f0f-8693-54abdb15c9cd\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.9821700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.9832727Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.9939742Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:42.9959757Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.0069437Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.0070172Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6d5f255d-6613-4ba5-baa0-4e209f2e36ad\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.0073224Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6d5f255d-6613-4ba5-baa0-4e209f2e36ad\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.0074081Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.0078169Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.0218403Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.0221630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.0316674Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.0317308Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0b73551e-bc30-4a03-b590-d9dfbb5fe39a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.0320484Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0b73551e-bc30-4a03-b590-d9dfbb5fe39a\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.0321328Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.0325232Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.0447816Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.0451115Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.0567790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.0568487Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\74332c91-9a1b-48ec-8431-a852f6301b3b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.0571483Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\74332c91-9a1b-48ec-8431-a852f6301b3b\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.0572310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.0576310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.0701005Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.0704219Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.0808281Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.0808885Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\184b386e-b418-4bd0-b3f8-7875d3cdf992\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.0811909Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\184b386e-b418-4bd0-b3f8-7875d3cdf992\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.0812770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.0817559Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.0937124Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.0940335Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.1052711Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.1053399Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b96cd6e6-fd61-43aa-90ac-fe764ac27ac6\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.1056305Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b96cd6e6-fd61-43aa-90ac-fe764ac27ac6\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.1057131Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.1061038Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.1176009Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.1179229Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.1286006Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.1286593Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\65798231-f1d2-4284-8bed-405f9cd7ebee\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.1289477Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\65798231-f1d2-4284-8bed-405f9cd7ebee\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.1290315Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.1294256Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.1411743Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.1414810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.1522308Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.1522901Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e2e03b3f-093e-49b1-9722-1d46e8d05127\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.1525792Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e2e03b3f-093e-49b1-9722-1d46e8d05127\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.1526642Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.1530555Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.1649380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.1652548Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.1758499Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.1759026Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7a09610c-65bb-44d1-a8b9-4ce80804b76e\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.1761940Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7a09610c-65bb-44d1-a8b9-4ce80804b76e\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.1762774Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.1766649Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.1879565Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.1882666Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.1907757Z","@mt":"Resetting upgrade step {UpgradeStep} because upgrade context has changed significantly since it was initialized","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep"} +{"@t":"2022-11-15T22:35:43.1908120Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Move to next project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:35:43.1929884Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Move to next project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:35:43.1930122Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:35:43.1931462Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Move to next project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep"} +{"@t":"2022-11-15T22:35:43.1941026Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Move to next project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep"} +{"@t":"2022-11-15T22:35:43.2050732Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.2051615Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c8351d4d-4eec-4f49-bfce-b99877401d94\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.2054811Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c8351d4d-4eec-4f49-bfce-b99877401d94\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.2055740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.2065751Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.2375736Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.2381222Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.2556028Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.2557016Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9532fd78-996a-4fd8-9369-b780d812b852\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.2562536Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9532fd78-996a-4fd8-9369-b780d812b852\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.2564129Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.2571535Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.2821909Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.2828118Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.2850367Z","@mt":"Skip minimum dependency check because Windows App SDK cannot work with targets lower than already recommended TFM.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:35:43.2882713Z","@mt":"Recommending Windows TFM {TFM} because the project either has Windows-specific dependencies or builds to a WinExe","TFM":"net7.0-windows10.0.19041","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsSdkTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:35:43.2915721Z","@mt":"Resetting upgrade step {UpgradeStep} because upgrade context has changed significantly since it was initialized","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep"} +{"@t":"2022-11-15T22:35:43.3025719Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.3027173Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\957b0eb8-688d-4786-907e-9b263eb0c2f2\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.3030499Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\957b0eb8-688d-4786-907e-9b263eb0c2f2\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.3031370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.3035611Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.3168684Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.3171977Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.3286088Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.3286787Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e6958a95-bfc9-4c6d-b218-33cc3a0d8b01\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.3290548Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e6958a95-bfc9-4c6d-b218-33cc3a0d8b01\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.3291529Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.3295956Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.3442961Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.3447670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.3463146Z","@mt":"Skip minimum dependency check because Windows App SDK cannot work with targets lower than already recommended TFM.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:35:43.3490707Z","@mt":"Recommending Windows TFM {TFM} because the project either has Windows-specific dependencies or builds to a WinExe","TFM":"net7.0-windows10.0.19041","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsSdkTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:35:43.3657917Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.3659156Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\49cdde9d-25b8-4649-aee4-9cc6bb29c0fc\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.3664259Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\49cdde9d-25b8-4649-aee4-9cc6bb29c0fc\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.3665695Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.3672264Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.3876607Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.3882001Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.4048372Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.4049253Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f07d6b32-adfa-423e-a400-a6fc62591c60\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.4054215Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f07d6b32-adfa-423e-a400-a6fc62591c60\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.4055727Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.4062180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.4262602Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.4268186Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.4284930Z","@mt":"Skip minimum dependency check because Windows App SDK cannot work with targets lower than already recommended TFM.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:35:43.4316442Z","@mt":"Recommending Windows TFM {TFM} because the project either has Windows-specific dependencies or builds to a WinExe","TFM":"net7.0-windows10.0.19041","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsSdkTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:35:43.4347251Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Select project to upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:35:43.4484338Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.4485171Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\cc10ecee-63a5-4438-9582-b0da987e5279\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.4486588Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.4493888Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.4494159Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.4494603Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.4494777Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.4627508Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.4628216Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7ba5f8c4-e21e-4439-9740-28c36abeba5c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.4629734Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.4638868Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.4639286Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.4639879Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.4640083Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.4647385Z","@mt":"Skip minimum dependency check because .NET MAUI support multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:35:43.4667982Z","@mt":"Project {Name} is of type .NET MAUI Target:Android, migration to .NET MAUI recommends net7.0-android.","Name":"PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:35:43.4679982Z","@mt":"Project {Name} is of type .NET MAUI Target:iOS, migration to .NET MAUI recommends net7.0-ios.","Name":"PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:35:43.4693370Z","@mt":"Could not merge incoming TFM update from {Current} to {Next}","@l":"Warning","Current":"net7.0-android","Next":"net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.TargetFrameworkSelector"} +{"@t":"2022-11-15T22:35:43.4797928Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.4798732Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fa2b1678-79ae-4a77-aa26-819331c2f081\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.4802408Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fa2b1678-79ae-4a77-aa26-819331c2f081\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.4803323Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.4807563Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.4944691Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.4947947Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.5072743Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.5073463Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f7b5b0aa-f0a5-4a91-80ba-b9aeccbef937\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.5076794Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f7b5b0aa-f0a5-4a91-80ba-b9aeccbef937\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.5077778Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.5082131Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.5244473Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.5248083Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.5259389Z","@mt":"Skip minimum dependency check because Windows App SDK cannot work with targets lower than already recommended TFM.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:35:43.5282813Z","@mt":"Recommending Windows TFM {TFM} because the project either has Windows-specific dependencies or builds to a WinExe","TFM":"net7.0-windows10.0.19041","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsSdkTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:35:43.5914462Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.5915314Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d227742e-ea7a-4f17-8102-3a5ebc3681c8\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.5918970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d227742e-ea7a-4f17-8102-3a5ebc3681c8\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.5919824Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.5945949Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.6168747Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.6169626Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.6279158Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.6279735Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a8e3f816-90a6-4d9d-9e5f-76c2ee027b66\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.6282541Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a8e3f816-90a6-4d9d-9e5f-76c2ee027b66\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.6283346Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.6284173Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.6308632Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.6309131Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.6418270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.6418849Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5f40f907-fbfc-4974-981d-52a645ecf94e\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.6422033Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5f40f907-fbfc-4974-981d-52a645ecf94e\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.6422903Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.6423713Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.6446984Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.6447520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.6555368Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.6555950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f9cddcee-9bbf-47ba-a20d-2bfe0f73c69c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.6558809Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f9cddcee-9bbf-47ba-a20d-2bfe0f73c69c\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.6559676Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.6560435Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.6581225Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.6581715Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.6698959Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.6699746Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e6e75fb1-95d1-4f8b-8c6d-a826afe76e4f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.6703181Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e6e75fb1-95d1-4f8b-8c6d-a826afe76e4f\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.6704192Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.6705119Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.6757503Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.6758282Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.6885653Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.6886370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\91424dc8-d1d3-43cb-a8c6-8c5a5e2fc913\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.6890092Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\91424dc8-d1d3-43cb-a8c6-8c5a5e2fc913\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.6891144Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.6892119Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.6920955Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.6921601Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.6929406Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Select project to upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:35:43.6929774Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:35:43.6932046Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Select project to upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep"} +{"@t":"2022-11-15T22:35:43.7068990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.7070264Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5b1131cd-e857-4703-9240-fb654ba63cb3\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.7072227Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.7082234Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.7082786Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.7083480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.7083756Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.7217570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.7218158Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\eb8fefde-a9be-44b1-bc84-21fa16ee3a31\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.7219445Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.7227496Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.7227770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.7228293Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.7228471Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.7234395Z","@mt":"Skip minimum dependency check because .NET MAUI support multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:35:43.7257597Z","@mt":"Project {Name} is of type .NET MAUI Target:Android, migration to .NET MAUI recommends net7.0-android.","Name":"PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:35:43.7273300Z","@mt":"Project {Name} is of type .NET MAUI Target:iOS, migration to .NET MAUI recommends net7.0-ios.","Name":"PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:35:43.7288920Z","@mt":"Could not merge incoming TFM update from {Current} to {Next}","@l":"Warning","Current":"net7.0-android","Next":"net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.TargetFrameworkSelector"} +{"@t":"2022-11-15T22:35:43.7418896Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.7419585Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\67ffd1b6-853e-4d7e-ad62-8f14ed425f56\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.7420920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.7428501Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.7428790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.7429263Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.7429445Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.7645079Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.7645755Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3f65c5cf-d1e8-421c-92c8-2b6f3068db10\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.7647216Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.7655404Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.7655679Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.7656179Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.7656359Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.7801622Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.7802425Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\80e05707-1719-4c8e-9e9e-9f606d3fd30b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.7806280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\80e05707-1719-4c8e-9e9e-9f606d3fd30b\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.7807389Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.7812489Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.7964601Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.7968681Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.8122848Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.8123537Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1a0cf277-d5f0-49cc-875e-7c22657fd2a9\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.8127364Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1a0cf277-d5f0-49cc-875e-7c22657fd2a9\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.8128422Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.8133311Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.8286637Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.8290523Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.8303084Z","@mt":"Skip minimum dependency check because Windows App SDK cannot work with targets lower than already recommended TFM.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:35:43.8324925Z","@mt":"Recommending Windows TFM {TFM} because the project either has Windows-specific dependencies or builds to a WinExe","TFM":"net7.0-windows10.0.19041","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsSdkTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:35:43.8469627Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.8470422Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\20801ff1-e882-4211-94ab-8c22418f4844\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.8473602Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\20801ff1-e882-4211-94ab-8c22418f4844\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.8474462Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.8478552Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.8605356Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.8608564Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.8708252Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.8708771Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\bced36e4-6bd7-45fe-b8e3-589f89b00aa9\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.8711629Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\bced36e4-6bd7-45fe-b8e3-589f89b00aa9\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.8712466Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.8716387Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.8834349Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.8837576Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.8939603Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.8940179Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6c766640-ecb1-4d8e-8b5a-0b8cea2d364a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.8943075Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6c766640-ecb1-4d8e-8b5a-0b8cea2d364a\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.8943926Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.8947888Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.9066854Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.9070100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.9173271Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.9173810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b12e6f30-d524-47ec-b6df-d1327e8cc620\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.9176780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b12e6f30-d524-47ec-b6df-d1327e8cc620\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.9177602Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.9181449Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.9319108Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.9322399Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.9443430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.9444139Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\de4f706b-280f-43fb-853f-ea8e0c53fe52\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.9447104Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\de4f706b-280f-43fb-853f-ea8e0c53fe52\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.9447945Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.9451844Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.9587925Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.9591460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.9691329Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.9691896Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9c1fa1c9-51cd-4f9d-987b-3f6a890b23a6\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.9694920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9c1fa1c9-51cd-4f9d-987b-3f6a890b23a6\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.9695797Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.9699674Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.9837974Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.9841164Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.9941150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.9941794Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3edcc400-cc33-400c-8f95-7720e0599190\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.9944760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3edcc400-cc33-400c-8f95-7720e0599190\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.9945620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.9946402Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.9968231Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:43.9968778Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.0067261Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.0067761Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d62fd900-e42b-46eb-af3c-ac7b65297cbe\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.0070381Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d62fd900-e42b-46eb-af3c-ac7b65297cbe\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.0071184Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.0071930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.0092301Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.0092796Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.0190233Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.0190830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\cd113ee7-49c9-4896-a2a2-0ae2055e0e5c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.0193645Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\cd113ee7-49c9-4896-a2a2-0ae2055e0e5c\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.0194507Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.0195296Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.0215616Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.0216100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.0333088Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.0333783Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9c2028f8-dce1-4edf-b29d-9f24d9285751\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.0336693Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9c2028f8-dce1-4edf-b29d-9f24d9285751\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.0337581Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.0338354Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.0360801Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.0361316Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.0462157Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.0462717Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\182b078a-1b3b-4749-a0f4-4e766c3a6770\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.0465447Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\182b078a-1b3b-4749-a0f4-4e766c3a6770\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.0466798Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.0467636Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.0490488Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.0490981Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.0587574Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.0588119Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9404dbc5-0689-4ccd-943b-68d098d4ef4d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.0590992Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9404dbc5-0689-4ccd-943b-68d098d4ef4d\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.0591827Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.0592587Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.0615204Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.0615709Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.1023302Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.1024041Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\43c02703-3545-44f7-b812-c44d336204a9\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.1027068Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\43c02703-3545-44f7-b812-c44d336204a9\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.1027867Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.1047786Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.1134314Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.1135991Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.1244948Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.1245744Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ca7320ef-8ee8-42f6-a4e3-15be7be26a5b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.1248796Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ca7320ef-8ee8-42f6-a4e3-15be7be26a5b\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.1249576Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.1250257Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.1358058Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.1359782Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.1463903Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.1464528Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\770770b3-12db-4ff4-a811-bc1501319bbb\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.1467446Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\770770b3-12db-4ff4-a811-bc1501319bbb\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.1468257Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.1468953Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.1489035Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.1490537Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.1610338Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.1610931Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\df1e7e06-64cb-4d51-945b-d97afcac6ea6\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.1613844Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\df1e7e06-64cb-4d51-945b-d97afcac6ea6\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.1614664Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.1615349Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.1635672Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.1637223Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.1742461Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.1743178Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\53b26a0d-ece9-4c9c-900a-3cc68e2e499d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.1746169Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\53b26a0d-ece9-4c9c-900a-3cc68e2e499d\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.1747021Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.1747796Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.1771609Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.1773418Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.1893170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.1893848Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a1824e37-ff19-43bf-a682-63799697d67c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.1896930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a1824e37-ff19-43bf-a682-63799697d67c\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.1897843Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.1898616Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.1938023Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.1939549Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:35:44.1945439Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Select project to upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep"} +{"@t":"2022-11-15T22:35:44.1976869Z","@mt":"Resetting upgrade step {UpgradeStep} because upgrade context has changed significantly since it was initialized","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.1977356Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Back up project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:35:44.1992031Z","@mt":"Determining backup path","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.1992738Z","@mt":"Using backup path {BackupPath}","@l":"Debug","BackupPath":"C:\\code\\PlantLady.backup\\PlantLady.Android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.1993202Z","@mt":"Backup upgrade step initialized as incomplete; will backup to {BackupLocation}","@l":"Debug","BackupLocation":"C:\\code\\PlantLady.backup\\PlantLady.Android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.1993742Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Back up project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:35:44.1993921Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:35:44.1995281Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Back up project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.2007902Z","@mt":"Determining backup path","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.2008414Z","@mt":"Using backup path {BackupPath}","@l":"Debug","BackupPath":"C:\\code\\PlantLady.backup\\PlantLady.Android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.2008943Z","@mt":"Backing up {ProjectDir} to {BackupPath}","ProjectDir":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android","BackupPath":"C:\\code\\PlantLady.backup\\PlantLady.Android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.2133130Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\MainActivity.cs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\MainActivity.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.2143908Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\PlantLady.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.2155733Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj.user","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\PlantLady.Android.csproj.user","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.2254140Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\Assets\\AboutAssets.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\Assets\\AboutAssets.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.2573076Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\bin\\Debug\\net6.0-android\\com.companyname.plantlady-Signed.apk","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\bin\\Debug\\net6.0-android\\com.companyname.plantlady-Signed.apk","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.3653810Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\bin\\Debug\\net6.0-android\\com.companyname.plantlady.apk","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\bin\\Debug\\net6.0-android\\com.companyname.plantlady.apk","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.4344990Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\bin\\Debug\\net6.0-android\\PlantLady.Android.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\bin\\Debug\\net6.0-android\\PlantLady.Android.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.4437916Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\bin\\Debug\\net6.0-android\\PlantLady.Android.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\bin\\Debug\\net6.0-android\\PlantLady.Android.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.4514832Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\bin\\Debug\\net6.0-android\\PlantLady.Android.runtimeconfig.json","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\bin\\Debug\\net6.0-android\\PlantLady.Android.runtimeconfig.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.4589429Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\bin\\Debug\\net6.0-android\\PlantLady.Android.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\bin\\Debug\\net6.0-android\\PlantLady.Android.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.6319669Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\bin\\Debug\\net6.0-android\\PlantLady.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\bin\\Debug\\net6.0-android\\PlantLady.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.6441738Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\bin\\Debug\\net6.0-android\\PlantLady.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\bin\\Debug\\net6.0-android\\PlantLady.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.6582761Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\bin\\Debug\\net6.0-android\\PlantLady.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\bin\\Debug\\net6.0-android\\PlantLady.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.6775103Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\PlantLady.Android.csproj.nuget.dgspec.json","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\PlantLady.Android.csproj.nuget.dgspec.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.6792293Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\PlantLady.Android.csproj.nuget.g.props","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\PlantLady.Android.csproj.nuget.g.props","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.6811805Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\PlantLady.Android.csproj.nuget.g.targets","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\PlantLady.Android.csproj.nuget.g.targets","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.7012008Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\project.assets.json","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\project.assets.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.7122058Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\project.nuget.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\project.nuget.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.7220426Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\.cache\\com.companyname.plantlady.flag","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\.cache\\com.companyname.plantlady.flag","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.7422610Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\.NETCoreApp,Version=v6.0.AssemblyAttributes.cs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\.NETCoreApp,Version=v6.0.AssemblyAttributes.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.7630184Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\acw-map.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\acw-map.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.7741723Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\adb.props","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\adb.props","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.7886221Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.7900477Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android_debug_keystore.flag","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android_debug_keystore.flag","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.8046485Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\build.props","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\build.props","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.8187144Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\buildid.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\buildid.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.8353229Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\customview-map.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\customview-map.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.8459496Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\devices.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\devices.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.8585558Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\libraryimports.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\libraryimports.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.8729906Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\libraryprojectimports.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\libraryprojectimports.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.8837216Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\mauifont.inputs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\mauifont.inputs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.8851234Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\mauifont.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\mauifont.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.8861362Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\mauiimage.inputs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\mauiimage.inputs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.8874647Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\mauiimage.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\mauiimage.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.8888342Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\mauisplash.inputs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\mauisplash.inputs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.9064615Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\PlantLady.Android.AssemblyInfo.cs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\PlantLady.Android.AssemblyInfo.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.9173743Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\PlantLady.Android.AssemblyInfoInputs.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\PlantLady.Android.AssemblyInfoInputs.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.9374594Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\PlantLady.Android.assets.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\PlantLady.Android.assets.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.9495939Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\PlantLady.Android.csproj.AssemblyReference.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\PlantLady.Android.csproj.AssemblyReference.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.9505227Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\PlantLady.Android.csproj.BuildWithSkipAnalyzers","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\PlantLady.Android.csproj.BuildWithSkipAnalyzers","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.9511540Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\PlantLady.Android.csproj.CopyComplete","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\PlantLady.Android.csproj.CopyComplete","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.9586856Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\PlantLady.Android.csproj.CoreCompileInputs.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\PlantLady.Android.csproj.CoreCompileInputs.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:44.9677044Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\PlantLady.Android.csproj.FileListAbsolute.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\PlantLady.Android.csproj.FileListAbsolute.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:45.0352660Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\PlantLady.Android.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\PlantLady.Android.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:45.0425539Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\PlantLady.Android.GeneratedMSBuildEditorConfig.editorconfig","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\PlantLady.Android.GeneratedMSBuildEditorConfig.editorconfig","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:45.0491285Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\PlantLady.Android.genruntimeconfig.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\PlantLady.Android.genruntimeconfig.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:45.0600997Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\PlantLady.Android.GlobalUsings.g.cs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\PlantLady.Android.GlobalUsings.g.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:45.0693893Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\PlantLady.Android.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\PlantLady.Android.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:45.0758146Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\PlantLady.Android.runtimeconfig.json.bin","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\PlantLady.Android.runtimeconfig.json.bin","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:45.0768939Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\R.cs.flag","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\R.cs.flag","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:45.0888397Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:45.0897650Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\res.flag","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\res.flag","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:45.0954721Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\resolvedassemblies.hash","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\resolvedassemblies.hash","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:45.1238472Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\Resource.designer.cs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\Resource.designer.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:45.1248311Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\static.flag","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\static.flag","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:45.1253385Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\upload.flag","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\upload.flag","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:45.1339340Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\_IsIncrementalBuild","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\_IsIncrementalBuild","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:45.1352339Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\_javac.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\_javac.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:45.1424565Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\__environment__.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\__environment__.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:45.1530871Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:45.1614639Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\compressed_assemblies.x86.o","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\compressed_assemblies.x86.o","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:45.1691426Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\compressed_assemblies.x86.s","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\compressed_assemblies.x86.s","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:45.1763443Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\environment.x86.o","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\environment.x86.o","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:45.1864731Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\environment.x86.s","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\environment.x86.s","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:45.2086608Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\typemaps.shared.inc","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\typemaps.shared.inc","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:45.2421297Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\typemaps.x86.o","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\typemaps.x86.o","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:45.2732316Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\typemaps.x86.s","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\typemaps.x86.s","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:45.4185153Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\GoogleGson.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\GoogleGson.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:45.5397758Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Java.Interop.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Java.Interop.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:45.5499089Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Java.Interop.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Java.Interop.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:45.5601834Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\machine.config","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\machine.config","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:45.6556243Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.CSharp.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.CSharp.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:45.6871623Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Extensions.Configuration.Abstractions.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Extensions.Configuration.Abstractions.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:45.7389837Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Extensions.Configuration.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Extensions.Configuration.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:45.8430479Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Extensions.DependencyInjection.Abstractions.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Extensions.DependencyInjection.Abstractions.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:46.0068767Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Extensions.DependencyInjection.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Extensions.DependencyInjection.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:46.0718173Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Extensions.Logging.Abstractions.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Extensions.Logging.Abstractions.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:46.1405884Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Extensions.Logging.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Extensions.Logging.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:46.2314220Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Extensions.Options.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Extensions.Options.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:46.3248324Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Extensions.Primitives.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Extensions.Primitives.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:46.4724092Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Maui.Controls.Compatibility.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Maui.Controls.Compatibility.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:46.4875331Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Maui.Controls.Compatibility.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Maui.Controls.Compatibility.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:46.8137688Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Maui.Controls.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Maui.Controls.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:46.8305460Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Maui.Controls.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Maui.Controls.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:46.9926299Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Maui.Controls.Xaml.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Maui.Controls.Xaml.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:47.0072131Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Maui.Controls.Xaml.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Maui.Controls.Xaml.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:47.0883950Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Maui.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Maui.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:47.1656004Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Maui.Essentials.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Maui.Essentials.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:47.1775844Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Maui.Essentials.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Maui.Essentials.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:47.2926228Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Maui.Graphics.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Maui.Graphics.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:47.3081856Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Maui.Graphics.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Maui.Graphics.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:47.3301783Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Maui.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Maui.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:47.5791547Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.VisualBasic.Core.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.VisualBasic.Core.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:47.6087628Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.VisualBasic.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.VisualBasic.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:47.6526067Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Win32.Primitives.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Win32.Primitives.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:47.7062973Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Win32.Registry.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Microsoft.Win32.Registry.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:50.0844482Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Mono.Android.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Mono.Android.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:50.2403926Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Mono.Android.Export.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Mono.Android.Export.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:50.2595854Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Mono.Android.Export.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Mono.Android.Export.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:50.4103335Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Mono.Android.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Mono.Android.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:50.4367775Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\mscorlib.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\mscorlib.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:50.4747578Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\netstandard.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\netstandard.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:50.5703912Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\PlantLady.Android.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\PlantLady.Android.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:50.5845493Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\PlantLady.Android.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\PlantLady.Android.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:50.7927178Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\PlantLady.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\PlantLady.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:50.8030066Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\PlantLady.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\PlantLady.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:50.8215405Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.AppContext.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.AppContext.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:50.8367681Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Buffers.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Buffers.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:50.9181605Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Collections.Concurrent.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Collections.Concurrent.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:51.0203442Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Collections.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Collections.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:51.1301469Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Collections.Immutable.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Collections.Immutable.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:51.2307969Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Collections.NonGeneric.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Collections.NonGeneric.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:51.3497389Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Collections.Specialized.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Collections.Specialized.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:51.5075463Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.ComponentModel.Annotations.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.ComponentModel.Annotations.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:51.5280632Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.ComponentModel.DataAnnotations.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.ComponentModel.DataAnnotations.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:51.5447932Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.ComponentModel.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.ComponentModel.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:51.5704551Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.ComponentModel.EventBasedAsync.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.ComponentModel.EventBasedAsync.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:51.6506232Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.ComponentModel.Primitives.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.ComponentModel.Primitives.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:51.8343586Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.ComponentModel.TypeConverter.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.ComponentModel.TypeConverter.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:51.8517122Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Configuration.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Configuration.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:51.8962148Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Console.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Console.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:51.9168570Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Core.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Core.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:52.0970573Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Data.Common.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Data.Common.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:52.1166167Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Data.DataSetExtensions.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Data.DataSetExtensions.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:52.1323588Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Data.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Data.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:52.1470907Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Diagnostics.Contracts.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Diagnostics.Contracts.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:52.1637239Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Diagnostics.Debug.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Diagnostics.Debug.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:52.2697766Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Diagnostics.DiagnosticSource.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Diagnostics.DiagnosticSource.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:52.3448795Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Diagnostics.FileVersionInfo.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Diagnostics.FileVersionInfo.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:52.5074621Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Diagnostics.Process.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Diagnostics.Process.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:52.5445891Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Diagnostics.StackTrace.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Diagnostics.StackTrace.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:52.6577034Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Diagnostics.TextWriterTraceListener.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Diagnostics.TextWriterTraceListener.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:52.6777983Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Diagnostics.Tools.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Diagnostics.Tools.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:52.7478990Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Diagnostics.TraceSource.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Diagnostics.TraceSource.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:52.7643462Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Diagnostics.Tracing.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Diagnostics.Tracing.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:52.7871920Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:52.8030676Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Drawing.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Drawing.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:52.9492671Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Drawing.Primitives.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Drawing.Primitives.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:52.9830212Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Dynamic.Runtime.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Dynamic.Runtime.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:53.0626825Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Formats.Asn1.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Formats.Asn1.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:53.0778608Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Globalization.Calendars.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Globalization.Calendars.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:53.0937724Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Globalization.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Globalization.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:53.1106859Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Globalization.Extensions.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Globalization.Extensions.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:53.1717608Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.IO.Compression.Brotli.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.IO.Compression.Brotli.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:53.2826201Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.IO.Compression.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.IO.Compression.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:53.3049955Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.IO.Compression.FileSystem.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.IO.Compression.FileSystem.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:53.3468607Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.IO.Compression.ZipFile.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.IO.Compression.ZipFile.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:53.3628929Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.IO.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.IO.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:53.3870283Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.IO.FileSystem.AccessControl.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.IO.FileSystem.AccessControl.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:53.4037535Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.IO.FileSystem.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.IO.FileSystem.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:53.4993872Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.IO.FileSystem.DriveInfo.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.IO.FileSystem.DriveInfo.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:53.5173441Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.IO.FileSystem.Primitives.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.IO.FileSystem.Primitives.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:53.6201459Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.IO.FileSystem.Watcher.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.IO.FileSystem.Watcher.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:53.7283992Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.IO.IsolatedStorage.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.IO.IsolatedStorage.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:53.8140348Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.IO.MemoryMappedFiles.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.IO.MemoryMappedFiles.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:53.8419363Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.IO.Pipes.AccessControl.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.IO.Pipes.AccessControl.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:53.9627836Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.IO.Pipes.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.IO.Pipes.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:53.9960864Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.IO.UnmanagedMemoryStream.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.IO.UnmanagedMemoryStream.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:54.0820035Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Linq.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Linq.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:54.1946090Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Linq.Expressions.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Linq.Expressions.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:54.2849495Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Linq.Parallel.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Linq.Parallel.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:54.3749499Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Linq.Queryable.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Linq.Queryable.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:54.4311120Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Memory.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Memory.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:54.4475613Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Net.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Net.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:54.6342542Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Net.Http.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Net.Http.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:54.6800088Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Net.Http.Json.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Net.Http.Json.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:54.8598268Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Net.HttpListener.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Net.HttpListener.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:54.9486091Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Net.Mail.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Net.Mail.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:55.0194253Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Net.NameResolution.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Net.NameResolution.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:55.0669337Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Net.NetworkInformation.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Net.NetworkInformation.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:55.1526546Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Net.Ping.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Net.Ping.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:55.3300180Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Net.Primitives.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Net.Primitives.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:55.3998244Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Net.Quic.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Net.Quic.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:55.4872256Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Net.Requests.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Net.Requests.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:55.6277142Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Net.Security.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Net.Security.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:55.6837398Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Net.ServicePoint.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Net.ServicePoint.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:55.8335203Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Net.Sockets.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Net.Sockets.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:56.0356265Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Net.WebClient.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Net.WebClient.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:56.1569182Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Net.WebHeaderCollection.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Net.WebHeaderCollection.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:56.2064297Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Net.WebProxy.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Net.WebProxy.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:56.2997267Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Net.WebSockets.Client.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Net.WebSockets.Client.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:56.4025041Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Net.WebSockets.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Net.WebSockets.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:56.4234176Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Numerics.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Numerics.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:56.4410276Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Numerics.Vectors.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Numerics.Vectors.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:56.4865818Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.ObjectModel.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.ObjectModel.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:56.7096351Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Private.CoreLib.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Private.CoreLib.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:56.8718148Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Private.DataContractSerialization.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Private.DataContractSerialization.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:57.1024601Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Private.Uri.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Private.Uri.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:57.3992291Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Private.Xml.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Private.Xml.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:57.4996192Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Private.Xml.Linq.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Private.Xml.Linq.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:57.5528494Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Reflection.DispatchProxy.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Reflection.DispatchProxy.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:57.5684006Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Reflection.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Reflection.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:57.5839810Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Reflection.Emit.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Reflection.Emit.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:57.5990284Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Reflection.Emit.ILGeneration.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Reflection.Emit.ILGeneration.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:57.6158364Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Reflection.Emit.Lightweight.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Reflection.Emit.Lightweight.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:57.6347444Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Reflection.Extensions.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Reflection.Extensions.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:57.7557173Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Reflection.Metadata.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Reflection.Metadata.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:57.7732534Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Reflection.Primitives.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Reflection.Primitives.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:57.8099275Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Reflection.TypeExtensions.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Reflection.TypeExtensions.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:57.8266119Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Resources.Reader.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Resources.Reader.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:57.8474836Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Resources.ResourceManager.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Resources.ResourceManager.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:57.9062953Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Resources.Writer.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Resources.Writer.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:57.9215303Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Runtime.CompilerServices.Unsafe.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Runtime.CompilerServices.Unsafe.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:57.9410259Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Runtime.CompilerServices.VisualC.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Runtime.CompilerServices.VisualC.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:57.9738744Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Runtime.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Runtime.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:58.0014268Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Runtime.Extensions.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Runtime.Extensions.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:58.0296552Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Runtime.Handles.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Runtime.Handles.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:58.0713358Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Runtime.InteropServices.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Runtime.InteropServices.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:58.0972821Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Runtime.InteropServices.RuntimeInformation.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Runtime.InteropServices.RuntimeInformation.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:58.1129571Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Runtime.Intrinsics.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Runtime.Intrinsics.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:58.1281451Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Runtime.Loader.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Runtime.Loader.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:58.2146523Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Runtime.Numerics.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Runtime.Numerics.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:58.2301901Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Runtime.Serialization.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Runtime.Serialization.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:58.3008461Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Runtime.Serialization.Formatters.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Runtime.Serialization.Formatters.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:58.3165665Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Runtime.Serialization.Json.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Runtime.Serialization.Json.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:58.3390019Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Runtime.Serialization.Primitives.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Runtime.Serialization.Primitives.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:58.3560227Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Runtime.Serialization.Xml.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Runtime.Serialization.Xml.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:58.3968505Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Security.AccessControl.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Security.AccessControl.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:58.4864029Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Security.Claims.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Security.Claims.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:58.6108584Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Security.Cryptography.Algorithms.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Security.Cryptography.Algorithms.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:58.6628820Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Security.Cryptography.Cng.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Security.Cryptography.Cng.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:58.7710995Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Security.Cryptography.Csp.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Security.Cryptography.Csp.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:58.9986722Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Security.Cryptography.Encoding.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Security.Cryptography.Encoding.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:59.0482659Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Security.Cryptography.OpenSsl.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Security.Cryptography.OpenSsl.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:59.1637257Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Security.Cryptography.Primitives.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Security.Cryptography.Primitives.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:59.2373433Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Security.Cryptography.X509Certificates.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Security.Cryptography.X509Certificates.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:59.2555731Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Security.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Security.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:59.2724733Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Security.Principal.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Security.Principal.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:59.3028995Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Security.Principal.Windows.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Security.Principal.Windows.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:59.3223018Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Security.SecureString.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Security.SecureString.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:59.3401232Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.ServiceModel.Web.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.ServiceModel.Web.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:59.3560012Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.ServiceProcess.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.ServiceProcess.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:59.4719888Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Text.Encoding.CodePages.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Text.Encoding.CodePages.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:59.4963057Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Text.Encoding.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Text.Encoding.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:59.5204765Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Text.Encoding.Extensions.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Text.Encoding.Extensions.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:59.6164934Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Text.Encodings.Web.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Text.Encodings.Web.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:59.7599693Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Text.Json.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Text.Json.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:35:59.9878299Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Text.RegularExpressions.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Text.RegularExpressions.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:00.0876279Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Threading.Channels.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Threading.Channels.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:00.1740653Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Threading.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Threading.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:00.1898747Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Threading.Overlapped.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Threading.Overlapped.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:00.2680185Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Threading.Tasks.Dataflow.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Threading.Tasks.Dataflow.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:00.2913482Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Threading.Tasks.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Threading.Tasks.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:00.3094908Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Threading.Tasks.Extensions.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Threading.Tasks.Extensions.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:00.4162734Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Threading.Tasks.Parallel.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Threading.Tasks.Parallel.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:00.4384644Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Threading.Thread.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Threading.Thread.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:00.4554071Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Threading.ThreadPool.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Threading.ThreadPool.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:00.4714517Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Threading.Timer.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Threading.Timer.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:00.4867118Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Transactions.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Transactions.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:00.5697036Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Transactions.Local.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Transactions.Local.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:00.5843565Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.ValueTuple.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.ValueTuple.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:00.5997258Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Web.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Web.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:00.6375617Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Web.HttpUtility.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Web.HttpUtility.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:00.6552859Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Windows.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Windows.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:00.6795762Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Xml.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Xml.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:00.7102054Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Xml.Linq.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Xml.Linq.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:00.7351428Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Xml.ReaderWriter.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Xml.ReaderWriter.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:00.7532481Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Xml.Serialization.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Xml.Serialization.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:00.7711950Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Xml.XDocument.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Xml.XDocument.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:00.7903012Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Xml.XmlDocument.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Xml.XmlDocument.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:00.8093525Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Xml.XmlSerializer.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Xml.XmlSerializer.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:00.8282447Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Xml.XPath.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Xml.XPath.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:00.8522016Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Xml.XPath.XDocument.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\System.Xml.XPath.XDocument.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:00.8786401Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\WindowsBase.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\WindowsBase.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:00.9032194Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.Android.Glide.Annotations.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.Android.Glide.Annotations.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:00.9463016Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.Android.Glide.DiskLruCache.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.Android.Glide.DiskLruCache.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:01.2577328Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.Android.Glide.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.Android.Glide.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:01.3685942Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.Android.Glide.GifDecoder.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.Android.Glide.GifDecoder.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:01.5410873Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Activity.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Activity.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:01.6035737Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Activity.Ktx.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Activity.Ktx.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:01.6165222Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Activity.Ktx.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Activity.Ktx.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:01.6288454Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Activity.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Activity.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:01.7169569Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Annotation.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Annotation.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:01.7697903Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Annotation.Experimental.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Annotation.Experimental.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:01.7787316Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Annotation.Experimental.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Annotation.Experimental.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:01.7875250Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Annotation.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Annotation.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:01.8453064Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.AppCompat.AppCompatResources.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.AppCompat.AppCompatResources.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:01.8525701Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.AppCompat.AppCompatResources.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.AppCompat.AppCompatResources.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:01.9319239Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.AppCompat.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.AppCompat.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:01.9481683Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.AppCompat.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.AppCompat.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:01.9889313Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Arch.Core.Common.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Arch.Core.Common.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:01.9964714Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Arch.Core.Common.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Arch.Core.Common.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:02.0359437Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Arch.Core.Runtime.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Arch.Core.Runtime.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:02.0459026Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Arch.Core.Runtime.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Arch.Core.Runtime.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:02.0813204Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.AsyncLayoutInflater.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.AsyncLayoutInflater.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:02.0906709Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.AsyncLayoutInflater.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.AsyncLayoutInflater.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:02.2147722Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Browser.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Browser.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:02.2242943Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Browser.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Browser.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:02.2632693Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.CardView.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.CardView.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:02.2706434Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.CardView.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.CardView.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:02.3552122Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Collection.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Collection.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:02.4018913Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Collection.Ktx.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Collection.Ktx.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:02.4150927Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Collection.Ktx.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Collection.Ktx.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:02.4298832Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Collection.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Collection.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:02.4985633Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Concurrent.Futures.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Concurrent.Futures.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:02.5063682Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Concurrent.Futures.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Concurrent.Futures.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:02.5866064Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.ConstraintLayout.Core.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.ConstraintLayout.Core.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:02.6017580Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.ConstraintLayout.Core.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.ConstraintLayout.Core.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:02.6847660Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.ConstraintLayout.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.ConstraintLayout.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:02.7076029Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.ConstraintLayout.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.ConstraintLayout.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:02.7812276Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.CoordinatorLayout.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.CoordinatorLayout.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:02.7884127Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.CoordinatorLayout.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.CoordinatorLayout.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:02.9064081Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Core.Core.Ktx.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Core.Core.Ktx.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:02.9169551Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Core.Core.Ktx.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Core.Core.Ktx.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:03.0577215Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Core.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Core.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:03.0744721Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Core.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Core.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:03.1568759Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.CursorAdapter.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.CursorAdapter.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:03.1646370Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.CursorAdapter.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.CursorAdapter.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:03.2184460Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.CustomView.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.CustomView.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:03.2263267Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.CustomView.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.CustomView.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:03.2826691Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.DocumentFile.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.DocumentFile.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:03.2965297Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.DocumentFile.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.DocumentFile.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:03.3776524Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.DrawerLayout.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.DrawerLayout.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:03.3866776Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.DrawerLayout.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.DrawerLayout.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:03.5119705Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.DynamicAnimation.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.DynamicAnimation.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:03.5256738Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.DynamicAnimation.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.DynamicAnimation.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:03.5970690Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Emoji2.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Emoji2.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:03.6112727Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Emoji2.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Emoji2.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:03.6766936Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Emoji2.ViewsHelper.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Emoji2.ViewsHelper.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:03.6911255Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Emoji2.ViewsHelper.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Emoji2.ViewsHelper.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:03.7570750Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.ExifInterface.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.ExifInterface.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:03.7640415Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.ExifInterface.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.ExifInterface.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:03.8330231Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Fragment.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Fragment.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:03.8618707Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Fragment.Ktx.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Fragment.Ktx.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:03.8707681Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Fragment.Ktx.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Fragment.Ktx.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:03.8821749Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Fragment.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Fragment.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:03.9154865Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Interpolator.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Interpolator.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:03.9245672Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Interpolator.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Interpolator.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:03.9850973Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Legacy.Support.Core.UI.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Legacy.Support.Core.UI.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:03.9967738Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Legacy.Support.Core.UI.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Legacy.Support.Core.UI.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:04.0378432Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Legacy.Support.Core.Utils.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Legacy.Support.Core.Utils.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:04.0484301Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Legacy.Support.Core.Utils.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Legacy.Support.Core.Utils.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:04.0655742Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Legacy.Support.V4.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Legacy.Support.V4.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:04.0749958Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Legacy.Support.V4.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Legacy.Support.V4.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:04.1755744Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Lifecycle.Common.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Lifecycle.Common.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:04.1887403Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Lifecycle.Common.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Lifecycle.Common.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:04.2586497Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Lifecycle.LiveData.Core.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Lifecycle.LiveData.Core.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:04.2965174Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:04.3108602Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:04.3257552Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Lifecycle.LiveData.Core.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Lifecycle.LiveData.Core.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:04.3771738Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Lifecycle.LiveData.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Lifecycle.LiveData.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:04.3911097Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Lifecycle.LiveData.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Lifecycle.LiveData.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:04.4435879Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Lifecycle.Process.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Lifecycle.Process.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:04.4582808Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Lifecycle.Process.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Lifecycle.Process.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:04.5171138Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Lifecycle.Runtime.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Lifecycle.Runtime.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:04.5942171Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Lifecycle.Runtime.Ktx.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:04.6033356Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Lifecycle.Runtime.Ktx.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Lifecycle.Runtime.Ktx.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:04.6136940Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Lifecycle.Runtime.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Lifecycle.Runtime.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:04.6827892Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Lifecycle.ViewModel.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Lifecycle.ViewModel.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:04.7030154Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:04.7113960Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Lifecycle.ViewModel.Ktx.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:04.7197472Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Lifecycle.ViewModel.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Lifecycle.ViewModel.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:04.7580302Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:04.7655326Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Lifecycle.ViewModelSavedState.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Lifecycle.ViewModelSavedState.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:04.8325135Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Loader.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Loader.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:04.8396979Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Loader.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Loader.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:04.8619104Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.LocalBroadcastManager.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.LocalBroadcastManager.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:04.8693131Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.LocalBroadcastManager.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.LocalBroadcastManager.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:04.9572141Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Media.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Media.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:04.9680798Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Media.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Media.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:05.0865732Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Navigation.Common.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Navigation.Common.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:05.1012823Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Navigation.Common.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Navigation.Common.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:05.2293236Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Navigation.Fragment.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Navigation.Fragment.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:05.2398309Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Navigation.Fragment.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Navigation.Fragment.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:05.3635113Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Navigation.Runtime.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Navigation.Runtime.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:05.3771018Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Navigation.Runtime.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Navigation.Runtime.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:05.5071490Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Navigation.UI.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Navigation.UI.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:05.5186925Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Navigation.UI.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Navigation.UI.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:05.5651129Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Print.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Print.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:05.5759406Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Print.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Print.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:05.6578767Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.RecyclerView.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.RecyclerView.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:05.6769926Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.RecyclerView.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.RecyclerView.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:05.7642900Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.ResourceInspection.Annotation.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.ResourceInspection.Annotation.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:05.7777225Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.ResourceInspection.Annotation.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.ResourceInspection.Annotation.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:05.8453386Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.SavedState.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.SavedState.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:05.8593038Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.SavedState.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.SavedState.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:05.8967946Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.SavedState.SavedState.Ktx.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.SavedState.SavedState.Ktx.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:05.9085470Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.SavedState.SavedState.Ktx.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.SavedState.SavedState.Ktx.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:05.9653268Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Security.SecurityCrypto.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Security.SecurityCrypto.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:05.9734814Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Security.SecurityCrypto.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Security.SecurityCrypto.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:06.0523464Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.SlidingPaneLayout.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.SlidingPaneLayout.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:06.0632816Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.SlidingPaneLayout.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.SlidingPaneLayout.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:06.1426353Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Startup.StartupRuntime.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Startup.StartupRuntime.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:06.1573324Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Startup.StartupRuntime.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Startup.StartupRuntime.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:06.2474715Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.SwipeRefreshLayout.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.SwipeRefreshLayout.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:06.2602299Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.SwipeRefreshLayout.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.SwipeRefreshLayout.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:06.3024352Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Tracing.Tracing.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Tracing.Tracing.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:06.3124187Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Tracing.Tracing.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Tracing.Tracing.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:06.4156022Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Transition.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Transition.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:06.4289002Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Transition.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Transition.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:06.5313579Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.VectorDrawable.Animated.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.VectorDrawable.Animated.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:06.5447109Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.VectorDrawable.Animated.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.VectorDrawable.Animated.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:06.6162735Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.VectorDrawable.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.VectorDrawable.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:06.6267285Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.VectorDrawable.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.VectorDrawable.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:06.7240638Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.VersionedParcelable.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.VersionedParcelable.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:06.7379457Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.VersionedParcelable.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.VersionedParcelable.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:06.8088712Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.ViewPager.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.ViewPager.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:06.8177625Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.ViewPager.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.ViewPager.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:06.9609275Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.ViewPager2.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.ViewPager2.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:06.9752827Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.ViewPager2.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.ViewPager2.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:07.1401358Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Window.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Window.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:07.1536021Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Window.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.AndroidX.Window.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:07.3133906Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.Google.Android.Material.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.Google.Android.Material.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:07.3313697Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.Google.Android.Material.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.Google.Android.Material.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:07.6531904Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.Google.Crypto.Tink.Android.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.Google.Crypto.Tink.Android.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:07.6971888Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.Google.Guava.ListenableFuture.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.Google.Guava.ListenableFuture.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:07.8288526Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.Jetbrains.Annotations.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.Jetbrains.Annotations.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:07.8528544Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.Kotlin.StdLib.Common.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.Kotlin.StdLib.Common.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:08.0393779Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.Kotlin.StdLib.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.Kotlin.StdLib.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:08.0857292Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.Kotlin.StdLib.Jdk7.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.Kotlin.StdLib.Jdk7.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:08.1092967Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.Kotlin.StdLib.Jdk8.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.Kotlin.StdLib.Jdk8.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:08.1455399Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.KotlinX.Coroutines.Android.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.KotlinX.Coroutines.Android.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:08.2665271Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.KotlinX.Coroutines.Core.Jvm.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\assets\\Xamarin.KotlinX.Coroutines.Core.Jvm.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:08.3846961Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes.dex","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes.dex","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:08.4300150Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:08.4965098Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes2.dex","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes2.dex","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:08.5863929Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\com.companyname.plantlady.apk","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\com.companyname.plantlady.apk","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:08.6061082Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\mono.android.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\mono.android.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:08.6461019Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\packaged_resources","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\packaged_resources","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:08.6601482Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\activity\\R.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\activity\\R.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:08.6679741Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\activity\\ktx\\R.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\activity\\ktx\\R.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:08.6772849Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\annotation\\experimental\\R.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\annotation\\experimental\\R.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:08.6862425Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\appcompat\\R$anim.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\appcompat\\R$anim.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:08.6962617Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\appcompat\\R$attr.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\appcompat\\R$attr.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:08.7069676Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\appcompat\\R$bool.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\appcompat\\R$bool.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:08.7176734Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\appcompat\\R$color.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\appcompat\\R$color.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:08.7313306Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\appcompat\\R$dimen.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\appcompat\\R$dimen.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:08.7469672Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\appcompat\\R$drawable.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\appcompat\\R$drawable.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:08.7679833Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\appcompat\\R$id.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\appcompat\\R$id.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:08.7948525Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\appcompat\\R$integer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\appcompat\\R$integer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:08.8165161Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\appcompat\\R$interpolator.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\appcompat\\R$interpolator.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:08.8393050Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\appcompat\\R$layout.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\appcompat\\R$layout.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:08.8613030Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\appcompat\\R$string.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\appcompat\\R$string.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:08.8844169Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\appcompat\\R$style.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\appcompat\\R$style.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:08.9110070Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\appcompat\\R$styleable.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\appcompat\\R$styleable.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:08.9335731Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\appcompat\\R.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\appcompat\\R.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:08.9604745Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\appcompat\\app\\AlertDialog_IDialogInterfaceOnCancelListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\appcompat\\app\\AlertDialog_IDialogInterfaceOnCancelListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:08.9838406Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\appcompat\\app\\AlertDialog_IDialogInterfaceOnClickListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\appcompat\\app\\AlertDialog_IDialogInterfaceOnClickListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.0099575Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\appcompat\\app\\AlertDialog_IDialogInterfaceOnMultiChoiceClickListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\appcompat\\app\\AlertDialog_IDialogInterfaceOnMultiChoiceClickListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.0348818Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\appcompat\\resources\\R$drawable.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\appcompat\\resources\\R$drawable.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.0450869Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\appcompat\\resources\\R$styleable.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\appcompat\\resources\\R$styleable.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.0539765Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\appcompat\\resources\\R.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\appcompat\\resources\\R.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.0635273Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\appcompat\\widget\\Toolbar_NavigationOnClickEventDispatcher.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\appcompat\\widget\\Toolbar_NavigationOnClickEventDispatcher.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.0721479Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\browser\\R$color.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\browser\\R$color.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.0795293Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\browser\\R$dimen.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\browser\\R$dimen.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.0873374Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\browser\\R$id.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\browser\\R$id.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.0963524Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\browser\\R$layout.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\browser\\R$layout.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.1054393Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\browser\\R$string.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\browser\\R$string.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.1148938Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\browser\\R$xml.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\browser\\R$xml.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.1235363Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\browser\\R.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\browser\\R.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.1353949Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\browser\\customtabs\\CustomTabsClient_CustomTabsCallbackImpl.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\browser\\customtabs\\CustomTabsClient_CustomTabsCallbackImpl.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.1472307Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\cardview\\R$attr.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\cardview\\R$attr.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.1600586Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\cardview\\R$color.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\cardview\\R$color.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.1693702Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\cardview\\R$dimen.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\cardview\\R$dimen.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.1785545Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\cardview\\R$style.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\cardview\\R$style.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.1881316Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\cardview\\R$styleable.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\cardview\\R$styleable.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.1968507Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\cardview\\R.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\cardview\\R.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.2087907Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\constraintlayout\\widget\\R$anim.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\constraintlayout\\widget\\R$anim.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.2189759Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\constraintlayout\\widget\\R$attr.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\constraintlayout\\widget\\R$attr.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.2287853Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\constraintlayout\\widget\\R$bool.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\constraintlayout\\widget\\R$bool.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.2371878Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\constraintlayout\\widget\\R$color.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\constraintlayout\\widget\\R$color.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.2456378Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\constraintlayout\\widget\\R$dimen.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\constraintlayout\\widget\\R$dimen.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.2538956Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\constraintlayout\\widget\\R$drawable.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\constraintlayout\\widget\\R$drawable.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.2623072Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\constraintlayout\\widget\\R$id.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\constraintlayout\\widget\\R$id.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.2724772Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\constraintlayout\\widget\\R$integer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\constraintlayout\\widget\\R$integer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.2808804Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\constraintlayout\\widget\\R$interpolator.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\constraintlayout\\widget\\R$interpolator.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.2905751Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\constraintlayout\\widget\\R$layout.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\constraintlayout\\widget\\R$layout.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.3007506Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\constraintlayout\\widget\\R$string.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\constraintlayout\\widget\\R$string.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.3104173Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\constraintlayout\\widget\\R$style.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\constraintlayout\\widget\\R$style.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.3219641Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\constraintlayout\\widget\\R$styleable.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\constraintlayout\\widget\\R$styleable.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.3321645Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\constraintlayout\\widget\\R.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\constraintlayout\\widget\\R.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.3423772Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\coordinatorlayout\\R$attr.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\coordinatorlayout\\R$attr.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.3505953Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\coordinatorlayout\\R$id.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\coordinatorlayout\\R$id.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.3582768Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\coordinatorlayout\\R$style.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\coordinatorlayout\\R$style.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.3659397Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\coordinatorlayout\\R$styleable.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\coordinatorlayout\\R$styleable.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.3726988Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\coordinatorlayout\\R.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\coordinatorlayout\\R.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.3812577Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\core\\R$attr.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\core\\R$attr.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.3884758Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\core\\R$color.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\core\\R$color.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.3959827Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\core\\R$dimen.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\core\\R$dimen.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.4035182Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\core\\R$drawable.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\core\\R$drawable.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.4124862Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\core\\R$id.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\core\\R$id.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.4212926Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\core\\R$integer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\core\\R$integer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.4292990Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\core\\R$layout.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\core\\R$layout.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.4360920Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\core\\R$menu.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\core\\R$menu.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.4432688Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\core\\R$string.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\core\\R$string.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.4509442Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\core\\R$style.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\core\\R$style.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.4589875Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\core\\R$styleable.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\core\\R$styleable.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.4656382Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\core\\R.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\core\\R.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.4733144Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\core\\ktx\\R.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\core\\ktx\\R.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.4815613Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\drawerlayout\\R$attr.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\drawerlayout\\R$attr.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.4891001Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\drawerlayout\\R$color.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\drawerlayout\\R$color.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.4971599Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\drawerlayout\\R$dimen.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\drawerlayout\\R$dimen.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.5046328Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\drawerlayout\\R$drawable.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\drawerlayout\\R$drawable.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.5122373Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\drawerlayout\\R$id.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\drawerlayout\\R$id.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.5208842Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\drawerlayout\\R$integer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\drawerlayout\\R$integer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.5307996Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\drawerlayout\\R$layout.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\drawerlayout\\R$layout.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.5416691Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\drawerlayout\\R$string.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\drawerlayout\\R$string.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.5540251Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\drawerlayout\\R$style.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\drawerlayout\\R$style.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.5679133Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\drawerlayout\\R$styleable.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\drawerlayout\\R$styleable.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.5795945Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\drawerlayout\\R.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\drawerlayout\\R.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.5922426Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\emoji2\\R.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\emoji2\\R.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.6058786Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\emoji2\\viewsintegration\\R.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\emoji2\\viewsintegration\\R.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.6194144Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\fragment\\R$anim.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\fragment\\R$anim.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.6328351Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\fragment\\R$animator.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\fragment\\R$animator.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.6457889Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\fragment\\R$id.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\fragment\\R$id.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.6590164Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\fragment\\R$styleable.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\fragment\\R$styleable.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.6693121Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\fragment\\R.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\fragment\\R.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.6788727Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\fragment\\ktx\\R.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\fragment\\ktx\\R.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.6896123Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\lifecycle\\ktx\\R.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\lifecycle\\ktx\\R.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.6980151Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\lifecycle\\livedata\\R.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\lifecycle\\livedata\\R.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.7075905Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\lifecycle\\livedata\\core\\R.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\lifecycle\\livedata\\core\\R.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.7171786Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\lifecycle\\livedata\\core\\ktx\\R.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\lifecycle\\livedata\\core\\ktx\\R.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.7292113Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\lifecycle\\process\\R.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\lifecycle\\process\\R.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.7430222Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\lifecycle\\runtime\\R$id.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\lifecycle\\runtime\\R$id.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.7552399Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\lifecycle\\runtime\\R.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\lifecycle\\runtime\\R.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.7706631Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\lifecycle\\viewmodel\\R$id.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\lifecycle\\viewmodel\\R$id.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.7834389Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\lifecycle\\viewmodel\\R.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\lifecycle\\viewmodel\\R.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.7970131Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\lifecycle\\viewmodel\\ktx\\R.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\lifecycle\\viewmodel\\ktx\\R.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.8109838Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\lifecycle\\viewmodel\\savedstate\\R.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\lifecycle\\viewmodel\\savedstate\\R.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.8230873Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\localbroadcastmanager\\R.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\localbroadcastmanager\\R.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.8338024Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\media\\R$color.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\media\\R$color.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.8409334Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\media\\R$id.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\media\\R$id.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.8496411Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\media\\R$integer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\media\\R$integer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.8598221Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\media\\R$layout.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\media\\R$layout.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.8671890Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\media\\R$style.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\media\\R$style.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.8738648Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\media\\R.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\media\\R.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.8818581Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\navigation\\R$attr.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\navigation\\R$attr.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.8884347Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\navigation\\R$id.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\navigation\\R$id.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.8963225Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\navigation\\R$styleable.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\navigation\\R$styleable.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.9034408Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\navigation\\R.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\navigation\\R.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.9114070Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\navigation\\common\\R$attr.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\navigation\\common\\R$attr.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.9192944Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\navigation\\common\\R$styleable.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\navigation\\common\\R$styleable.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.9262283Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\navigation\\common\\R.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\navigation\\common\\R.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.9341633Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\navigation\\fragment\\R$attr.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\navigation\\fragment\\R$attr.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.9418994Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\navigation\\fragment\\R$dimen.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\navigation\\fragment\\R$dimen.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.9492844Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\navigation\\fragment\\R$id.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\navigation\\fragment\\R$id.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.9569912Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\navigation\\fragment\\R$styleable.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\navigation\\fragment\\R$styleable.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.9641075Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\navigation\\fragment\\R.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\navigation\\fragment\\R.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.9736049Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\navigation\\ui\\R$anim.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\navigation\\ui\\R$anim.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.9832719Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\navigation\\ui\\R$animator.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\navigation\\ui\\R$animator.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:09.9995229Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\navigation\\ui\\R$integer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\navigation\\ui\\R$integer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.0084506Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\navigation\\ui\\R$string.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\navigation\\ui\\R$string.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.0172520Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\navigation\\ui\\R.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\navigation\\ui\\R.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.0276854Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\recyclerview\\R$attr.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\recyclerview\\R$attr.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.0366787Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\recyclerview\\R$color.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\recyclerview\\R$color.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.0469265Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\recyclerview\\R$dimen.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\recyclerview\\R$dimen.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.0555197Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\recyclerview\\R$drawable.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\recyclerview\\R$drawable.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.0656468Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\recyclerview\\R$id.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\recyclerview\\R$id.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.0780504Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\recyclerview\\R$integer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\recyclerview\\R$integer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.0902890Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\recyclerview\\R$layout.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\recyclerview\\R$layout.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.1021269Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\recyclerview\\R$string.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\recyclerview\\R$string.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.1140142Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\recyclerview\\R$style.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\recyclerview\\R$style.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.1267595Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\recyclerview\\R$styleable.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\recyclerview\\R$styleable.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.1380552Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\recyclerview\\R.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\recyclerview\\R.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.1500885Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\savedstate\\R$id.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\savedstate\\R$id.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.1616497Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\savedstate\\R.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\savedstate\\R.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.1744832Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\slidingpanelayout\\R.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\slidingpanelayout\\R.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.1847560Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\startup\\R$string.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\startup\\R$string.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.1940577Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\startup\\R.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\startup\\R.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.2053002Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\swiperefreshlayout\\R$attr.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\swiperefreshlayout\\R$attr.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.2129698Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\swiperefreshlayout\\R$color.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\swiperefreshlayout\\R$color.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.2217482Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\swiperefreshlayout\\R$dimen.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\swiperefreshlayout\\R$dimen.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.2300028Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\swiperefreshlayout\\R$drawable.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\swiperefreshlayout\\R$drawable.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.2377655Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\swiperefreshlayout\\R$id.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\swiperefreshlayout\\R$id.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.2449521Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\swiperefreshlayout\\R$integer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\swiperefreshlayout\\R$integer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.2527185Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\swiperefreshlayout\\R$layout.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\swiperefreshlayout\\R$layout.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.2602934Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\swiperefreshlayout\\R$string.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\swiperefreshlayout\\R$string.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.2676533Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\swiperefreshlayout\\R$style.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\swiperefreshlayout\\R$style.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.2756881Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\swiperefreshlayout\\R$styleable.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\swiperefreshlayout\\R$styleable.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.2831152Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\swiperefreshlayout\\R.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\swiperefreshlayout\\R.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.2919763Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\transition\\R$anim.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\transition\\R$anim.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.3008291Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\transition\\R$attr.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\transition\\R$attr.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.3114945Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\transition\\R$bool.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\transition\\R$bool.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.3205786Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\transition\\R$color.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\transition\\R$color.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.3296925Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\transition\\R$dimen.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\transition\\R$dimen.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.3386039Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\transition\\R$drawable.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\transition\\R$drawable.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.3474431Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\transition\\R$id.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\transition\\R$id.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.3552113Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\transition\\R$integer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\transition\\R$integer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.3640906Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\transition\\R$layout.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\transition\\R$layout.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.3735507Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\transition\\R$string.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\transition\\R$string.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.3838398Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\transition\\R$style.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\transition\\R$style.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.3944239Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\transition\\R$styleable.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\transition\\R$styleable.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.4040474Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\transition\\R.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\transition\\R.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.4149138Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\viewpager2\\R$attr.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\viewpager2\\R$attr.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.4238684Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\viewpager2\\R$color.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\viewpager2\\R$color.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.4326510Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\viewpager2\\R$dimen.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\viewpager2\\R$dimen.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.4410880Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\viewpager2\\R$drawable.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\viewpager2\\R$drawable.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.4499018Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\viewpager2\\R$id.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\viewpager2\\R$id.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.4577666Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\viewpager2\\R$integer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\viewpager2\\R$integer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.4659416Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\viewpager2\\R$layout.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\viewpager2\\R$layout.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.4738640Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\viewpager2\\R$string.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\viewpager2\\R$string.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.4817800Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\viewpager2\\R$style.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\viewpager2\\R$style.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.4897624Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\viewpager2\\R$styleable.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\viewpager2\\R$styleable.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.4964220Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\viewpager2\\R.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\viewpager2\\R.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.5052525Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\window\\R$attr.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\window\\R$attr.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.5120032Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\window\\R$id.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\window\\R$id.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.5199119Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\window\\R$styleable.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\window\\R$styleable.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.5270764Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\window\\R.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\androidx\\window\\R.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.5368646Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\bumptech\\glide\\R$attr.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\bumptech\\glide\\R$attr.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.5444936Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\bumptech\\glide\\R$color.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\bumptech\\glide\\R$color.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.5523467Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\bumptech\\glide\\R$dimen.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\bumptech\\glide\\R$dimen.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.5600774Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\bumptech\\glide\\R$drawable.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\bumptech\\glide\\R$drawable.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.5686086Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\bumptech\\glide\\R$id.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\bumptech\\glide\\R$id.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.5759384Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\bumptech\\glide\\R$integer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\bumptech\\glide\\R$integer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.5853749Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\bumptech\\glide\\R$layout.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\bumptech\\glide\\R$layout.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.5932861Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\bumptech\\glide\\R$string.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\bumptech\\glide\\R$string.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.6010351Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\bumptech\\glide\\R$style.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\bumptech\\glide\\R$style.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.6092427Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\bumptech\\glide\\R$styleable.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\bumptech\\glide\\R$styleable.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.6163914Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\bumptech\\glide\\R.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\bumptech\\glide\\R.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.6264922Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\companyname\\plantlady\\R$anim.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\companyname\\plantlady\\R$anim.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.6347763Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\companyname\\plantlady\\R$animator.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\companyname\\plantlady\\R$animator.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.6454455Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\companyname\\plantlady\\R$attr.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\companyname\\plantlady\\R$attr.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.6565888Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\companyname\\plantlady\\R$bool.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\companyname\\plantlady\\R$bool.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.6665206Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\companyname\\plantlady\\R$color.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\companyname\\plantlady\\R$color.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.6782435Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\companyname\\plantlady\\R$dimen.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\companyname\\plantlady\\R$dimen.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.6899135Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\companyname\\plantlady\\R$drawable.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\companyname\\plantlady\\R$drawable.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.7003847Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\companyname\\plantlady\\R$id.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\companyname\\plantlady\\R$id.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.7119204Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\companyname\\plantlady\\R$integer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\companyname\\plantlady\\R$integer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.7205879Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\companyname\\plantlady\\R$interpolator.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\companyname\\plantlady\\R$interpolator.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.7290397Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\companyname\\plantlady\\R$layout.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\companyname\\plantlady\\R$layout.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.7367067Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\companyname\\plantlady\\R$menu.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\companyname\\plantlady\\R$menu.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.7445744Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\companyname\\plantlady\\R$mipmap.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\companyname\\plantlady\\R$mipmap.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.7525227Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\companyname\\plantlady\\R$plurals.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\companyname\\plantlady\\R$plurals.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.7617405Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\companyname\\plantlady\\R$string.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\companyname\\plantlady\\R$string.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.7710712Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\companyname\\plantlady\\R$style.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\companyname\\plantlady\\R$style.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.7821552Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\companyname\\plantlady\\R$styleable.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\companyname\\plantlady\\R$styleable.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.7900814Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\companyname\\plantlady\\R$xml.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\companyname\\plantlady\\R$xml.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.7982150Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\companyname\\plantlady\\R.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\companyname\\plantlady\\R.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.8093088Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\google\\android\\material\\R$anim.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\google\\android\\material\\R$anim.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.8177995Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\google\\android\\material\\R$animator.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\google\\android\\material\\R$animator.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.8280719Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\google\\android\\material\\R$attr.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\google\\android\\material\\R$attr.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.8373945Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\google\\android\\material\\R$bool.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\google\\android\\material\\R$bool.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.8473082Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\google\\android\\material\\R$color.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\google\\android\\material\\R$color.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.8589353Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\google\\android\\material\\R$dimen.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\google\\android\\material\\R$dimen.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.8700825Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\google\\android\\material\\R$drawable.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\google\\android\\material\\R$drawable.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.8788095Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\google\\android\\material\\R$id.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\google\\android\\material\\R$id.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.8882708Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\google\\android\\material\\R$integer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\google\\android\\material\\R$integer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.8958524Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\google\\android\\material\\R$interpolator.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\google\\android\\material\\R$interpolator.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.9049300Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\google\\android\\material\\R$layout.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\google\\android\\material\\R$layout.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.9130469Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\google\\android\\material\\R$plurals.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\google\\android\\material\\R$plurals.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.9224565Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\google\\android\\material\\R$string.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\google\\android\\material\\R$string.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.9310233Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\google\\android\\material\\R$style.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\google\\android\\material\\R$style.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.9423485Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\google\\android\\material\\R$styleable.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\google\\android\\material\\R$styleable.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.9516991Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\google\\android\\material\\R$xml.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\google\\android\\material\\R$xml.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.9588085Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\google\\android\\material\\R.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\google\\android\\material\\R.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.9687341Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\google\\android\\material\\snackbar\\Snackbar_SnackbarActionClickImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\google\\android\\material\\snackbar\\Snackbar_SnackbarActionClickImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.9777768Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\microsoft\\maui\\R$anim.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\microsoft\\maui\\R$anim.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.9867267Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\microsoft\\maui\\R$animator.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\microsoft\\maui\\R$animator.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:10.9957324Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\microsoft\\maui\\R$attr.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\microsoft\\maui\\R$attr.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.0047514Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\microsoft\\maui\\R$bool.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\microsoft\\maui\\R$bool.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.0129408Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\microsoft\\maui\\R$color.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\microsoft\\maui\\R$color.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.0223930Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\microsoft\\maui\\R$dimen.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\microsoft\\maui\\R$dimen.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.0315316Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\microsoft\\maui\\R$drawable.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\microsoft\\maui\\R$drawable.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.0393235Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\microsoft\\maui\\R$id.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\microsoft\\maui\\R$id.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.0480501Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\microsoft\\maui\\R$integer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\microsoft\\maui\\R$integer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.0554118Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\microsoft\\maui\\R$interpolator.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\microsoft\\maui\\R$interpolator.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.0628781Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\microsoft\\maui\\R$layout.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\microsoft\\maui\\R$layout.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.0695591Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\microsoft\\maui\\R$plurals.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\microsoft\\maui\\R$plurals.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.0776141Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\microsoft\\maui\\R$string.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\microsoft\\maui\\R$string.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.0870898Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\microsoft\\maui\\R$style.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\microsoft\\maui\\R$style.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.0993717Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\microsoft\\maui\\R$styleable.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\microsoft\\maui\\R$styleable.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.1097440Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\microsoft\\maui\\R$xml.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\microsoft\\maui\\R$xml.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.1193517Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\microsoft\\maui\\R.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\com\\microsoft\\maui\\R.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.1330308Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640a1f4d108c17e3f1\\ClipboardChangeListener.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640a1f4d108c17e3f1\\ClipboardChangeListener.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.1558261Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640a8d9a12ddbf2cf2\\BatteryBroadcastReceiver.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640a8d9a12ddbf2cf2\\BatteryBroadcastReceiver.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.1779705Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640a8d9a12ddbf2cf2\\DeviceDisplayImplementation_Listener.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640a8d9a12ddbf2cf2\\DeviceDisplayImplementation_Listener.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.1974065Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640a8d9a12ddbf2cf2\\EnergySaverBroadcastReceiver.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640a8d9a12ddbf2cf2\\EnergySaverBroadcastReceiver.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.2095198Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ContainerView.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ContainerView.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.2176926Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\CustomFrameLayout.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\CustomFrameLayout.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.2261004Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\RecyclerViewContainer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\RecyclerViewContainer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.2345720Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ScrollLayoutManager.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ScrollLayoutManager.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.2431243Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellContentFragment.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellContentFragment.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.2516843Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellFlyoutLayout.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellFlyoutLayout.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.2595667Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellFlyoutRecyclerAdapter.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellFlyoutRecyclerAdapter.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.2675572Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellFlyoutRecyclerAdapter_ElementViewHolder.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellFlyoutRecyclerAdapter_ElementViewHolder.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.2766233Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellFlyoutRecyclerAdapter_ShellLinearLayout.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellFlyoutRecyclerAdapter_ShellLinearLayout.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.2854113Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellFlyoutRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellFlyoutRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.2945128Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellFlyoutTemplatedContentRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellFlyoutTemplatedContentRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.3031372Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellFlyoutTemplatedContentRenderer_HeaderContainer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellFlyoutTemplatedContentRenderer_HeaderContainer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.3113154Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellFragmentContainer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellFragmentContainer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.3199627Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellFragmentStateAdapter.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellFragmentStateAdapter.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.3284624Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellItemRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellItemRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.3368389Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellItemRendererBase.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellItemRendererBase.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.3455817Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellPageContainer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellPageContainer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.3555624Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellSearchView.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellSearchView.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.3637271Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellSearchViewAdapter.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellSearchViewAdapter.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.3719391Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellSearchViewAdapter_CustomFilter.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellSearchViewAdapter_CustomFilter.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.3802558Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellSearchViewAdapter_ObjectWrapper.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellSearchViewAdapter_ObjectWrapper.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.3891002Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellSearchView_ClipDrawableWrapper.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellSearchView_ClipDrawableWrapper.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.3981620Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellSectionRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellSectionRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.4063704Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellSectionRenderer_ViewPagerPageChanged.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellSectionRenderer_ViewPagerPageChanged.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.4145843Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellToolbarTracker.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellToolbarTracker.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.4245454Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellToolbarTracker_FlyoutIconDrawerDrawable.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc640ec207abc449b2ca\\ShellToolbarTracker_FlyoutIconDrawerDrawable.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.4349793Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64124e178812aeed4c\\ButtonRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64124e178812aeed4c\\ButtonRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.4438117Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64124e178812aeed4c\\FrameRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64124e178812aeed4c\\FrameRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.4532179Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64124e178812aeed4c\\ImageRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64124e178812aeed4c\\ImageRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.4622477Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64124e178812aeed4c\\LabelRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64124e178812aeed4c\\LabelRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.4718879Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6413a2ffd8f229512a\\CarouselViewAdapter_2.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6413a2ffd8f229512a\\CarouselViewAdapter_2.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.4818668Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6413a2ffd8f229512a\\RecyclerViewScrollListener_2.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6413a2ffd8f229512a\\RecyclerViewScrollListener_2.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.4919219Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64338477404e88479c\\ColorChangeRevealDrawable.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64338477404e88479c\\ColorChangeRevealDrawable.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.5019397Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64338477404e88479c\\ControlsAccessibilityDelegate.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64338477404e88479c\\ControlsAccessibilityDelegate.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.5138557Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64338477404e88479c\\DragAndDropGestureHandler.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64338477404e88479c\\DragAndDropGestureHandler.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.5262601Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64338477404e88479c\\DragAndDropGestureHandler_CustomLocalStateData.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64338477404e88479c\\DragAndDropGestureHandler_CustomLocalStateData.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.5393348Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64338477404e88479c\\FormattedStringExtensions_FontSpan.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64338477404e88479c\\FormattedStringExtensions_FontSpan.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.5524510Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64338477404e88479c\\FormattedStringExtensions_LetterSpacingSpan.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64338477404e88479c\\FormattedStringExtensions_LetterSpacingSpan.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.5664981Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64338477404e88479c\\FormattedStringExtensions_LineHeightSpan.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64338477404e88479c\\FormattedStringExtensions_LineHeightSpan.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.5796768Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64338477404e88479c\\FragmentContainer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64338477404e88479c\\FragmentContainer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.5910956Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64338477404e88479c\\GenericAnimatorListener.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64338477404e88479c\\GenericAnimatorListener.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.6034727Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64338477404e88479c\\GenericGlobalLayoutListener.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64338477404e88479c\\GenericGlobalLayoutListener.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.6183179Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64338477404e88479c\\GenericMenuClickListener.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64338477404e88479c\\GenericMenuClickListener.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.6326031Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64338477404e88479c\\GradientStrokeDrawable.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64338477404e88479c\\GradientStrokeDrawable.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.6471713Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64338477404e88479c\\GradientStrokeDrawable_GradientShaderFactory.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64338477404e88479c\\GradientStrokeDrawable_GradientShaderFactory.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.6618168Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64338477404e88479c\\InnerGestureListener.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64338477404e88479c\\InnerGestureListener.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.6762651Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64338477404e88479c\\InnerScaleListener.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64338477404e88479c\\InnerScaleListener.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.6907233Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64338477404e88479c\\MauiViewPager.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64338477404e88479c\\MauiViewPager.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.7022941Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64338477404e88479c\\ModalNavigationManager_ModalContainer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64338477404e88479c\\ModalNavigationManager_ModalContainer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.7155092Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64338477404e88479c\\ModalNavigationManager_ModalContainer_ModalFragment.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64338477404e88479c\\ModalNavigationManager_ModalContainer_ModalFragment.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.7308797Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64338477404e88479c\\MultiPageFragmentStateAdapter_1.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64338477404e88479c\\MultiPageFragmentStateAdapter_1.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.7455907Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64338477404e88479c\\TapAndPanGestureDetector.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64338477404e88479c\\TapAndPanGestureDetector.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.7608964Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64338477404e88479c\\ToolbarExtensions_ToolbarTitleIconImageView.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64338477404e88479c\\ToolbarExtensions_ToolbarTitleIconImageView.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.7782421Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64396a3fe5f8138e3f\\CustomTabsServiceConnectionImpl.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64396a3fe5f8138e3f\\CustomTabsServiceConnectionImpl.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.7925243Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64396a3fe5f8138e3f\\KeepAliveService.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64396a3fe5f8138e3f\\KeepAliveService.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.8076358Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc643f2b18b2570eaa5a\\PlatformGraphicsView.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc643f2b18b2570eaa5a\\PlatformGraphicsView.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.8208773Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\AccessibilityDelegateCompatWrapper.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\AccessibilityDelegateCompatWrapper.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.8353590Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\BorderDrawable.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\BorderDrawable.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.8502989Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\ContainerView.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\ContainerView.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.8654011Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\ContentViewGroup.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\ContentViewGroup.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.8801521Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\LayoutViewGroup.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\LayoutViewGroup.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.8951409Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\LocalizedDigitsKeyListener.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\LocalizedDigitsKeyListener.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.9096446Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\MauiAccessibilityDelegateCompat.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\MauiAccessibilityDelegateCompat.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.9250695Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\MauiAppCompatEditText.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\MauiAppCompatEditText.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.9396925Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\MauiBoxView.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\MauiBoxView.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.9556405Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\MauiDatePicker.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\MauiDatePicker.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.9709377Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\MauiHorizontalScrollView.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\MauiHorizontalScrollView.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:11.9864247Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\MauiMaterialButton.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\MauiMaterialButton.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.0018455Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\MauiPageControl.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\MauiPageControl.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.0170785Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\MauiPageControl_TEditClickListener.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\MauiPageControl_TEditClickListener.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.0319903Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\MauiPicker.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\MauiPicker.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.0472637Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\MauiPickerBase.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\MauiPickerBase.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.0627972Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\MauiScrollView.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\MauiScrollView.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.0777555Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\MauiShapeView.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\MauiShapeView.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.0921293Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\MauiStepper.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\MauiStepper.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.1072301Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\MauiSwipeRefreshLayout.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\MauiSwipeRefreshLayout.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.1226843Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\MauiSwipeView.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\MauiSwipeView.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.1360735Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\MauiTextView.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\MauiTextView.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.1465301Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\MauiTimePicker.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\MauiTimePicker.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.1555016Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\MauiWebChromeClient.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\MauiWebChromeClient.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.1650156Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\MauiWebView.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\MauiWebView.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.1768364Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\MauiWebViewClient.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\MauiWebViewClient.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.1859887Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\NavigationViewFragment.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\NavigationViewFragment.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.1940420Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\PlatformTouchGraphicsView.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\PlatformTouchGraphicsView.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.2023401Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\ScopedFragment.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\ScopedFragment.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.2107720Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\StackNavigationManager_Callbacks.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\StackNavigationManager_Callbacks.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.2191346Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\StackNavigationManager_StackContext.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\StackNavigationManager_StackContext.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.2281617Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\StackNavigationManager_StackLayoutInflater.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\StackNavigationManager_StackLayoutInflater.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.2365819Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\StepperHandlerHolder.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\StepperHandlerHolder.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.2448164Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\StepperHandlerManager_StepperListener.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\StepperHandlerManager_StepperListener.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.2527625Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\SwipeViewPager.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\SwipeViewPager.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.2613975Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\ViewFragment.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\ViewFragment.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.2699814Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\WebViewExtensions_JavascriptResult.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\WebViewExtensions_JavascriptResult.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.2785267Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\WrapperView.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6452ffdc5b34af3a0f\\WrapperView.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.2889424Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\CarouselSpacingItemDecoration.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\CarouselSpacingItemDecoration.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.2971565Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\CarouselViewAdapter_2.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\CarouselViewAdapter_2.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.3054354Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\CarouselViewOnScrollListener.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\CarouselViewOnScrollListener.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.3137658Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\CarouselViewwOnGlobalLayoutListener.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\CarouselViewwOnGlobalLayoutListener.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.3225421Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\CenterSnapHelper.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\CenterSnapHelper.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.3313300Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\DataChangeObserver.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\DataChangeObserver.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.3408282Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\EdgeSnapHelper.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\EdgeSnapHelper.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.3512271Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\EmptyViewAdapter.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\EmptyViewAdapter.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.3610682Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\EndSingleSnapHelper.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\EndSingleSnapHelper.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.3711130Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\EndSnapHelper.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\EndSnapHelper.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.3808128Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\GridLayoutSpanSizeLookup.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\GridLayoutSpanSizeLookup.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.3906072Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\GroupableItemsViewAdapter_2.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\GroupableItemsViewAdapter_2.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.4021016Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\ItemContentView.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\ItemContentView.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.4154698Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\ItemsViewAdapter_2.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\ItemsViewAdapter_2.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.4288945Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\MauiCarouselRecyclerView.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\MauiCarouselRecyclerView.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.4431270Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\MauiRecyclerView_3.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\MauiRecyclerView_3.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.4580953Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\NongreedySnapHelper.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\NongreedySnapHelper.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.4727632Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\NongreedySnapHelper_InitialScrollListener.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\NongreedySnapHelper_InitialScrollListener.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.4872512Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\PositionalSmoothScroller.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\PositionalSmoothScroller.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.5014319Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\RecyclerViewScrollListener_2.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\RecyclerViewScrollListener_2.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.5160496Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\ReorderableItemsViewAdapter_2.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\ReorderableItemsViewAdapter_2.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.5303981Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\ScrollHelper.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\ScrollHelper.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.5455712Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\SelectableItemsViewAdapter_2.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\SelectableItemsViewAdapter_2.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.5614208Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\SelectableViewHolder.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\SelectableViewHolder.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.5785683Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\SimpleItemTouchHelperCallback.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\SimpleItemTouchHelperCallback.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.5929959Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\SimpleViewHolder.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\SimpleViewHolder.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.6038959Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\SingleSnapHelper.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\SingleSnapHelper.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.6132042Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\SizedItemContentView.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\SizedItemContentView.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.6227696Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\SpacingItemDecoration.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\SpacingItemDecoration.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.6320067Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\StartSingleSnapHelper.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\StartSingleSnapHelper.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.6402798Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\StartSnapHelper.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\StartSnapHelper.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.6482186Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\StructuredItemsViewAdapter_2.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\StructuredItemsViewAdapter_2.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.6567527Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\TemplatedItemViewHolder.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\TemplatedItemViewHolder.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.6648912Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\TextViewHolder.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc645d80431ce5f73f11\\TextViewHolder.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.6739834Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6468b6408a11370c2f\\WebAuthenticatorCallbackActivity.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6468b6408a11370c2f\\WebAuthenticatorCallbackActivity.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.6828666Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6468b6408a11370c2f\\WebAuthenticatorIntermediateActivity.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6468b6408a11370c2f\\WebAuthenticatorIntermediateActivity.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.6994386Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ActivityIndicatorRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ActivityIndicatorRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.7112224Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\AHorizontalScrollView.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\AHorizontalScrollView.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.7235312Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\BorderDrawable.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\BorderDrawable.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.7349938Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\BoxRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\BoxRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.7466012Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\CarouselPageAdapter.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\CarouselPageAdapter.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.7582680Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\CarouselSpacingItemDecoration.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\CarouselSpacingItemDecoration.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.7703162Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\CarouselViewRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\CarouselViewRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.7814452Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\CarouselViewRenderer_CarouselViewOnScrollListener.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\CarouselViewRenderer_CarouselViewOnScrollListener.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.7928956Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\CarouselViewRenderer_CarouselViewwOnGlobalLayoutListener.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\CarouselViewRenderer_CarouselViewwOnGlobalLayoutListener.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.8042368Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\CellRenderer_RendererHolder.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\CellRenderer_RendererHolder.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.8156719Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\CenterSnapHelper.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\CenterSnapHelper.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.8271441Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\CheckBoxRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\CheckBoxRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.8396087Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\CheckBoxRendererBase.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\CheckBoxRendererBase.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.8501792Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\CircularProgress.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\CircularProgress.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.8601289Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\CollectionViewRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\CollectionViewRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.8698804Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\DataChangeObserver.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\DataChangeObserver.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.8799636Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\DatePickerRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\DatePickerRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.8895212Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\DatePickerRendererBase_1.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\DatePickerRendererBase_1.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.8992352Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\DragAndDropGestureHandler.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\DragAndDropGestureHandler.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.9083623Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\DragAndDropGestureHandler_CustomLocalStateData.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\DragAndDropGestureHandler_CustomLocalStateData.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.9178235Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\EdgeSnapHelper.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\EdgeSnapHelper.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.9273090Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\EditorRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\EditorRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.9389682Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\EditorRendererBase_1.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\EditorRendererBase_1.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.9508402Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\EllipseRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\EllipseRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.9627958Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\EllipseView.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\EllipseView.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.9748535Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\EmptyViewAdapter.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\EmptyViewAdapter.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.9868232Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\EndSingleSnapHelper.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\EndSingleSnapHelper.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:12.9989747Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\EndSnapHelper.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\EndSnapHelper.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.0110324Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\EntryAccessibilityDelegate.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\EntryAccessibilityDelegate.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.0213614Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\EntryRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\EntryRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.0306489Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\EntryRendererBase_1.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\EntryRendererBase_1.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.0394154Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\FlyoutPageContainer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\FlyoutPageContainer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.0480420Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\FlyoutPageRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\FlyoutPageRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.0561392Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\FormsAnimationDrawable.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\FormsAnimationDrawable.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.0647694Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\FormsAppCompatActivity.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\FormsAppCompatActivity.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.0733779Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\FormsEditText.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\FormsEditText.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.0816752Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\FormsEditTextBase.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\FormsEditTextBase.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.0913825Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\FormsImageView.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\FormsImageView.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.1028793Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\FormsSeekBar.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\FormsSeekBar.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.1129950Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\FormsTextView.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\FormsTextView.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.1236919Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\FormsVideoView.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\FormsVideoView.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.1339974Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\FormsWebChromeClient.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\FormsWebChromeClient.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.1456743Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\FormsWebViewClient.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\FormsWebViewClient.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.1560334Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\GridLayoutSpanSizeLookup.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\GridLayoutSpanSizeLookup.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.1663151Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\GroupableItemsViewAdapter_2.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\GroupableItemsViewAdapter_2.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.1753503Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\GroupableItemsViewRenderer_3.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\GroupableItemsViewRenderer_3.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.1867749Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\GroupedListViewAdapter.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\GroupedListViewAdapter.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.1989230Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ImageButtonRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ImageButtonRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.2098263Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ImageCache_CacheEntry.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ImageCache_CacheEntry.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.2198190Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ImageCache_FormsLruCache.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ImageCache_FormsLruCache.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.2284568Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ImageRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ImageRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.2369977Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\IndicatorViewRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\IndicatorViewRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.2452254Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ItemContentView.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ItemContentView.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.2534455Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ItemsViewAdapter_2.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ItemsViewAdapter_2.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.2618377Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ItemsViewRenderer_3.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ItemsViewRenderer_3.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.2703524Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\LabelRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\LabelRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.2786551Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\LineRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\LineRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.2873157Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\LineView.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\LineView.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.2957434Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ListViewAdapter.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ListViewAdapter.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.3044183Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ListViewRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ListViewRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.3142517Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ListViewRenderer_Container.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ListViewRenderer_Container.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.3244939Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ListViewRenderer_ListViewScrollDetector.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ListViewRenderer_ListViewScrollDetector.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.3352859Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ListViewRenderer_SwipeRefreshLayoutWithFixedNestedScrolling.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ListViewRenderer_SwipeRefreshLayoutWithFixedNestedScrolling.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.3455720Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\NativeViewWrapperRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\NativeViewWrapperRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.3552963Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\NongreedySnapHelper.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\NongreedySnapHelper.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.3653146Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\NongreedySnapHelper_InitialScrollListener.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\NongreedySnapHelper_InitialScrollListener.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.3750545Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ObjectJavaBox_1.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ObjectJavaBox_1.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.3847956Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\OpenGLViewRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\OpenGLViewRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.3932841Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\OpenGLViewRenderer_Renderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\OpenGLViewRenderer_Renderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.4015565Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\PageContainer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\PageContainer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.4103979Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\PageExtensions_EmbeddedFragment.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\PageExtensions_EmbeddedFragment.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.4186399Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\PageExtensions_EmbeddedSupportFragment.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\PageExtensions_EmbeddedSupportFragment.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.4271668Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\PageRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\PageRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.4354292Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\PathRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\PathRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.4441311Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\PathView.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\PathView.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.4524926Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\PickerEditText.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\PickerEditText.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.4607017Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\PickerManager_PickerListener.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\PickerManager_PickerListener.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.4698148Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\PlatformRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\PlatformRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.4786997Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\Platform_DefaultRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\Platform_DefaultRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.4893576Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\Platform_ModalContainer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\Platform_ModalContainer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.5001813Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\PolygonRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\PolygonRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.5108770Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\PolygonView.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\PolygonView.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.5198716Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\PolylineRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\PolylineRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.5282878Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\PolylineView.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\PolylineView.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.5375540Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\PositionalSmoothScroller.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\PositionalSmoothScroller.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.5478198Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ProgressBarRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ProgressBarRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.5610572Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\RadioButtonRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\RadioButtonRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.5724389Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\RectangleRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\RectangleRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.5837410Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\RectView.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\RectView.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.5961909Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\RefreshViewRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\RefreshViewRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.6092174Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ScrollHelper.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ScrollHelper.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.6248077Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ScrollViewContainer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ScrollViewContainer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.6399244Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ScrollViewRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ScrollViewRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.6554807Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\SearchBarRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\SearchBarRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.6703551Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\SelectableItemsViewAdapter_2.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\SelectableItemsViewAdapter_2.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.6851055Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\SelectableItemsViewRenderer_3.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\SelectableItemsViewRenderer_3.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.6998952Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\SelectableViewHolder.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\SelectableViewHolder.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.7149831Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ShapeRenderer_2.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ShapeRenderer_2.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.7305866Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ShapeView.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ShapeView.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.7448007Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\SimpleViewHolder.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\SimpleViewHolder.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.7593237Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\SingleSnapHelper.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\SingleSnapHelper.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.7755751Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\SizedItemContentView.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\SizedItemContentView.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.7910732Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\SliderRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\SliderRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.8055153Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\SpacingItemDecoration.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\SpacingItemDecoration.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.8200501Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\StartSingleSnapHelper.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\StartSingleSnapHelper.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.8348521Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\StartSnapHelper.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\StartSnapHelper.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.8459958Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\StepperRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\StepperRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.8553450Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\StepperRendererManager_StepperListener.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\StepperRendererManager_StepperListener.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.8636122Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\StructuredItemsViewAdapter_2.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\StructuredItemsViewAdapter_2.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.8727652Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\StructuredItemsViewRenderer_3.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\StructuredItemsViewRenderer_3.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.8827017Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\SwipeViewRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\SwipeViewRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.8930604Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\TableViewModelRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\TableViewModelRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.9036949Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\TableViewRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\TableViewRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.9137081Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\TemplatedItemViewHolder.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\TemplatedItemViewHolder.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.9243504Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\TextCellRenderer_TextCellView.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\TextCellRenderer_TextCellView.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.9341530Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\TextViewHolder.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\TextViewHolder.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.9444113Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\TimePickerRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\TimePickerRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.9543688Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\TimePickerRendererBase_1.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\TimePickerRendererBase_1.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.9649900Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ViewCellRenderer_ViewCellContainer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ViewCellRenderer_ViewCellContainer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.9753503Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ViewCellRenderer_ViewCellContainer_LongPressGestureListener.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ViewCellRenderer_ViewCellContainer_LongPressGestureListener.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.9858097Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ViewCellRenderer_ViewCellContainer_TapGestureListener.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ViewCellRenderer_ViewCellContainer_TapGestureListener.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:13.9959544Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ViewRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ViewRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.0059530Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ViewRenderer_2.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\ViewRenderer_2.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.0146949Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\VisualElementRenderer_1.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\VisualElementRenderer_1.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.0242851Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\VisualElementTracker_AttachTracker.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\VisualElementTracker_AttachTracker.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.0359179Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\WebViewRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\WebViewRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.0506571Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\WebViewRenderer_JavascriptResult.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6477f0d89a9cfd64b1\\WebViewRenderer_JavascriptResult.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.0672384Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6488302ad6e9e4df1a\\ImageLoaderCallback.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6488302ad6e9e4df1a\\ImageLoaderCallback.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.0826944Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6488302ad6e9e4df1a\\ImageLoaderCallbackBase_1.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6488302ad6e9e4df1a\\ImageLoaderCallbackBase_1.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.0980065Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6488302ad6e9e4df1a\\ImageLoaderResultCallback.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6488302ad6e9e4df1a\\ImageLoaderResultCallback.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.1144102Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6488302ad6e9e4df1a\\MauiAppCompatActivity.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6488302ad6e9e4df1a\\MauiAppCompatActivity.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.1285448Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6488302ad6e9e4df1a\\MauiApplication.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6488302ad6e9e4df1a\\MauiApplication.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.1444002Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6488302ad6e9e4df1a\\MauiApplication_ActivityLifecycleCallbacks.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6488302ad6e9e4df1a\\MauiApplication_ActivityLifecycleCallbacks.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.1614943Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc648869a3bc33bc8f58\\MainActivity.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc648869a3bc33bc8f58\\MainActivity.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.1750558Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc648869a3bc33bc8f58\\MainApplication.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc648869a3bc33bc8f58\\MainApplication.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.1932637Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc648afdc667cfb0dccb\\ButtonRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc648afdc667cfb0dccb\\ButtonRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.2094023Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc648afdc667cfb0dccb\\CarouselPageRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc648afdc667cfb0dccb\\CarouselPageRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.2250876Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc648afdc667cfb0dccb\\FormsFragmentPagerAdapter_1.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc648afdc667cfb0dccb\\FormsFragmentPagerAdapter_1.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.2392235Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc648afdc667cfb0dccb\\FormsViewPager.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc648afdc667cfb0dccb\\FormsViewPager.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.2549506Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc648afdc667cfb0dccb\\FragmentContainer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc648afdc667cfb0dccb\\FragmentContainer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.2694661Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc648afdc667cfb0dccb\\FrameRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc648afdc667cfb0dccb\\FrameRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.2822497Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc648afdc667cfb0dccb\\NavigationPageRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc648afdc667cfb0dccb\\NavigationPageRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.2918915Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc648afdc667cfb0dccb\\NavigationPageRenderer_ClickListener.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc648afdc667cfb0dccb\\NavigationPageRenderer_ClickListener.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.3019757Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc648afdc667cfb0dccb\\NavigationPageRenderer_Container.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc648afdc667cfb0dccb\\NavigationPageRenderer_Container.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.3101312Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc648afdc667cfb0dccb\\NavigationPageRenderer_DrawerMultiplexedListener.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc648afdc667cfb0dccb\\NavigationPageRenderer_DrawerMultiplexedListener.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.3180856Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc648afdc667cfb0dccb\\PickerRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc648afdc667cfb0dccb\\PickerRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.3261398Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc648afdc667cfb0dccb\\PickerRendererBase_1.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc648afdc667cfb0dccb\\PickerRendererBase_1.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.3347647Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc648afdc667cfb0dccb\\SwitchRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc648afdc667cfb0dccb\\SwitchRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.3433449Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc648afdc667cfb0dccb\\TabbedPageRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc648afdc667cfb0dccb\\TabbedPageRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.3511738Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc648afdc667cfb0dccb\\ViewRenderer_2.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc648afdc667cfb0dccb\\ViewRenderer_2.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.3600290Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6493855b22b6fa0721\\TextToSpeechInternalImplementation.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc6493855b22b6fa0721\\TextToSpeechInternalImplementation.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.3697078Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc649ff77a65592e7d55\\TabbedPageManager_Listeners.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc649ff77a65592e7d55\\TabbedPageManager_Listeners.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.3780341Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc649ff77a65592e7d55\\TabbedPageManager_TempView.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc649ff77a65592e7d55\\TabbedPageManager_TempView.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.3873731Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64a25b61d9f8ee364f\\FloatArrayEvaluator.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64a25b61d9f8ee364f\\FloatArrayEvaluator.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.3954293Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64a25b61d9f8ee364f\\RectEvaluator.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64a25b61d9f8ee364f\\RectEvaluator.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.4034814Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64a25b61d9f8ee364f\\TransitionUtils.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64a25b61d9f8ee364f\\TransitionUtils.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.4119261Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64a25b61d9f8ee364f\\TransitionUtils_MatrixEvaluator.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64a25b61d9f8ee364f\\TransitionUtils_MatrixEvaluator.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.4207831Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64b5e713d400f589b7\\LinearGradientShaderFactory.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64b5e713d400f589b7\\LinearGradientShaderFactory.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.4288759Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64b5e713d400f589b7\\MauiDrawable.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64b5e713d400f589b7\\MauiDrawable.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.4373395Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64b5e713d400f589b7\\RadialGradientShaderFactory.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64b5e713d400f589b7\\RadialGradientShaderFactory.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.4468614Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64ba438d8f48cf7e75\\ActivityLifecycleContextListener.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64ba438d8f48cf7e75\\ActivityLifecycleContextListener.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.4582061Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64ba438d8f48cf7e75\\IntermediateActivity.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64ba438d8f48cf7e75\\IntermediateActivity.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.4696449Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\BaseCellView.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\BaseCellView.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.4797953Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\CellAdapter.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\CellAdapter.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.4885741Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\CellRenderer_RendererHolder.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\CellRenderer_RendererHolder.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.5006361Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\ConditionalFocusLayout.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\ConditionalFocusLayout.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.5116159Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\EntryCellEditText.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\EntryCellEditText.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.5246159Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\EntryCellView.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\EntryCellView.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.5374164Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\FrameRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\FrameRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.5503237Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\GroupedListViewAdapter.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\GroupedListViewAdapter.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.5629864Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\ListViewAdapter.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\ListViewAdapter.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.5756478Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\ListViewRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\ListViewRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.5894599Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\ListViewRenderer_Container.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\ListViewRenderer_Container.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.6005355Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\ListViewRenderer_ListViewScrollDetector.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\ListViewRenderer_ListViewScrollDetector.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.6092842Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\ListViewRenderer_ListViewSwipeRefreshLayoutListener.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\ListViewRenderer_ListViewSwipeRefreshLayoutListener.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.6186427Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\ListViewRenderer_SwipeRefreshLayoutWithFixedNestedScrolling.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\ListViewRenderer_SwipeRefreshLayoutWithFixedNestedScrolling.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.6270445Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\ShellRenderer_SplitDrawable.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\ShellRenderer_SplitDrawable.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.6371367Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\SwitchCellView.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\SwitchCellView.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.6470922Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\TableViewModelRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\TableViewModelRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.6595350Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\TableViewRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\TableViewRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.6713324Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\TextCellRenderer_TextCellView.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\TextCellRenderer_TextCellView.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.6835586Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\ViewCellRenderer_ViewCellContainer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\ViewCellRenderer_ViewCellContainer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.6951327Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\ViewCellRenderer_ViewCellContainer_LongPressGestureListener.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\ViewCellRenderer_ViewCellContainer_LongPressGestureListener.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.7065137Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\ViewCellRenderer_ViewCellContainer_TapGestureListener.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\ViewCellRenderer_ViewCellContainer_TapGestureListener.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.7185611Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\ViewRenderer.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\ViewRenderer.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.7305977Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\ViewRenderer_2.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\ViewRenderer_2.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.7405627Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\VisualElementRenderer_1.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e1fb321c08285b90\\VisualElementRenderer_1.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.7522256Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e53d2f592022988e\\ConnectivityBroadcastReceiver.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e53d2f592022988e\\ConnectivityBroadcastReceiver.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.7666645Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e53d2f592022988e\\ConnectivityImplementation_EssentialsNetworkCallback.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64e53d2f592022988e\\ConnectivityImplementation_EssentialsNetworkCallback.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.7827127Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64f62664462a8937a9\\AccelerometerListener.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64f62664462a8937a9\\AccelerometerListener.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.7966480Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64f62664462a8937a9\\BarometerListener.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64f62664462a8937a9\\BarometerListener.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.8127052Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64f62664462a8937a9\\GyroscopeListener.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64f62664462a8937a9\\GyroscopeListener.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.8276426Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64f62664462a8937a9\\MagnetometerListener.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64f62664462a8937a9\\MagnetometerListener.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.8431511Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64f62664462a8937a9\\OrientationSensorListener.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64f62664462a8937a9\\OrientationSensorListener.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.8604030Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64f62664462a8937a9\\SensorListener.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64f62664462a8937a9\\SensorListener.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.8764061Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64f62664462a8937a9\\SingleLocationListener.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64f62664462a8937a9\\SingleLocationListener.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.8931390Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64f728827fec74e9c3\\Toolbar_Container.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64f728827fec74e9c3\\Toolbar_Container.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.9094284Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64fcf28c0e24b4cc31\\ButtonHandler_ButtonClickListener.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64fcf28c0e24b4cc31\\ButtonHandler_ButtonClickListener.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.9221647Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64fcf28c0e24b4cc31\\ButtonHandler_ButtonTouchListener.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64fcf28c0e24b4cc31\\ButtonHandler_ButtonTouchListener.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.9322280Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64fcf28c0e24b4cc31\\SliderHandler_SeekBarChangeListener.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64fcf28c0e24b4cc31\\SliderHandler_SeekBarChangeListener.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.9408108Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64fcf28c0e24b4cc31\\SwitchHandler_CheckedChangeListener.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64fcf28c0e24b4cc31\\SwitchHandler_CheckedChangeListener.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.9494483Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64fcf28c0e24b4cc31\\ToolbarHandler_ProcessBackClick.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\crc64fcf28c0e24b4cc31\\ToolbarHandler_ProcessBackClick.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.9608462Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\microsoft\\maui\\essentials\\fileProvider.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\microsoft\\maui\\essentials\\fileProvider.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.9741524Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\MonoPackageManager_Resources.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\MonoPackageManager_Resources.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:14.9854728Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\MonoRuntimeProvider.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\MonoRuntimeProvider.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.0003623Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\android\\app\\ApplicationRegistration.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\android\\app\\ApplicationRegistration.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.0192824Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\android\\support\\v4\\media\\session\\MediaSessionCompat_OnActiveChangeListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\android\\support\\v4\\media\\session\\MediaSessionCompat_OnActiveChangeListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.0384040Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\activity\\contextaware\\OnContextAvailableListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\activity\\contextaware\\OnContextAvailableListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.0559335Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\appcompat\\app\\ActionBar_OnMenuVisibilityListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\appcompat\\app\\ActionBar_OnMenuVisibilityListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.0705516Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\appcompat\\app\\ActionBar_OnNavigationListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\appcompat\\app\\ActionBar_OnNavigationListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.0852512Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\appcompat\\app\\ActionBar_TabListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\appcompat\\app\\ActionBar_TabListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.1016336Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\appcompat\\widget\\ActionMenuView_OnMenuItemClickListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\appcompat\\widget\\ActionMenuView_OnMenuItemClickListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.1163256Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\appcompat\\widget\\ContentFrameLayout_OnAttachListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\appcompat\\widget\\ContentFrameLayout_OnAttachListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.1324859Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\appcompat\\widget\\FitWindowsViewGroup_OnFitSystemWindowsListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\appcompat\\widget\\FitWindowsViewGroup_OnFitSystemWindowsListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.1472343Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\appcompat\\widget\\MenuItemHoverListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\appcompat\\widget\\MenuItemHoverListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.1620333Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\appcompat\\widget\\PopupMenu_OnDismissListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\appcompat\\widget\\PopupMenu_OnDismissListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.1769379Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\appcompat\\widget\\PopupMenu_OnMenuItemClickListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\appcompat\\widget\\PopupMenu_OnMenuItemClickListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.1920820Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\appcompat\\widget\\SearchView_OnCloseListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\appcompat\\widget\\SearchView_OnCloseListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.2126025Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\appcompat\\widget\\SearchView_OnQueryTextListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\appcompat\\widget\\SearchView_OnQueryTextListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.2330687Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\appcompat\\widget\\SearchView_OnSuggestionListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\appcompat\\widget\\SearchView_OnSuggestionListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.2485582Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\appcompat\\widget\\ShareActionProvider_OnShareTargetSelectedListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\appcompat\\widget\\ShareActionProvider_OnShareTargetSelectedListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.2638683Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\appcompat\\widget\\Toolbar_OnMenuItemClickListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\appcompat\\widget\\Toolbar_OnMenuItemClickListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.2786139Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\appcompat\\widget\\ViewStubCompat_OnInflateListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\appcompat\\widget\\ViewStubCompat_OnInflateListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.2939937Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\asynclayoutinflater\\view\\AsyncLayoutInflater_OnInflateFinishedListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\asynclayoutinflater\\view\\AsyncLayoutInflater_OnInflateFinishedListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.3131968Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\constraintlayout\\motion\\widget\\MotionLayout_TransitionListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\constraintlayout\\motion\\widget\\MotionLayout_TransitionListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.3288142Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\constraintlayout\\widget\\SharedValues_SharedValuesListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\constraintlayout\\widget\\SharedValues_SharedValuesListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.3465477Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\core\\app\\SharedElementCallback_OnSharedElementsReadyListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\core\\app\\SharedElementCallback_OnSharedElementsReadyListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.3622446Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\core\\os\\CancellationSignal_OnCancelListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\core\\os\\CancellationSignal_OnCancelListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.3772229Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\core\\view\\ActionProvider_SubUiVisibilityListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\core\\view\\ActionProvider_SubUiVisibilityListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.3876209Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\core\\view\\ActionProvider_VisibilityListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\core\\view\\ActionProvider_VisibilityListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.3967541Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\core\\view\\DragStartHelper_OnDragStartListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\core\\view\\DragStartHelper_OnDragStartListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.4054324Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\core\\view\\MenuItemCompat_OnActionExpandListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\core\\view\\MenuItemCompat_OnActionExpandListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.4138239Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\core\\view\\OnApplyWindowInsetsListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\core\\view\\OnApplyWindowInsetsListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.4223068Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\core\\view\\OnReceiveContentListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\core\\view\\OnReceiveContentListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.4328652Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\core\\view\\ViewPropertyAnimatorListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\core\\view\\ViewPropertyAnimatorListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.4422702Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\core\\view\\ViewPropertyAnimatorUpdateListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\core\\view\\ViewPropertyAnimatorUpdateListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.4515489Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\core\\view\\WindowInsetsControllerCompat_OnControllableInsetsChangedListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\core\\view\\WindowInsetsControllerCompat_OnControllableInsetsChangedListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.4633185Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\core\\view\\accessibility\\AccessibilityManagerCompat_AccessibilityStateChangeListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\core\\view\\accessibility\\AccessibilityManagerCompat_AccessibilityStateChangeListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.4769696Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\core\\view\\accessibility\\AccessibilityManagerCompat_TouchExplorationStateChangeListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\core\\view\\accessibility\\AccessibilityManagerCompat_TouchExplorationStateChangeListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.4945689Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\core\\view\\inputmethod\\InputConnectionCompat_OnCommitContentListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\core\\view\\inputmethod\\InputConnectionCompat_OnCommitContentListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.5120026Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\core\\widget\\NestedScrollView_OnScrollChangeListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\core\\widget\\NestedScrollView_OnScrollChangeListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.5315847Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\drawerlayout\\widget\\DrawerLayout_DrawerListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\drawerlayout\\widget\\DrawerLayout_DrawerListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.5562083Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\dynamicanimation\\animation\\DynamicAnimation_OnAnimationEndListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\dynamicanimation\\animation\\DynamicAnimation_OnAnimationEndListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.5763678Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\dynamicanimation\\animation\\DynamicAnimation_OnAnimationUpdateListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\dynamicanimation\\animation\\DynamicAnimation_OnAnimationUpdateListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.6002386Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\fragment\\app\\FragmentManager_OnBackStackChangedListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\fragment\\app\\FragmentManager_OnBackStackChangedListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.6200632Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\fragment\\app\\FragmentOnAttachListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\fragment\\app\\FragmentOnAttachListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.6406501Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\fragment\\app\\FragmentResultListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\fragment\\app\\FragmentResultListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.6612678Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\fragment\\app\\strictmode\\FragmentStrictMode_OnViolationListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\fragment\\app\\strictmode\\FragmentStrictMode_OnViolationListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.6844495Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\loader\\content\\Loader_OnLoadCanceledListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\loader\\content\\Loader_OnLoadCanceledListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.7037593Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\loader\\content\\Loader_OnLoadCompleteListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\loader\\content\\Loader_OnLoadCompleteListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.7254227Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\navigation\\NavController_OnDestinationChangedListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\navigation\\NavController_OnDestinationChangedListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.7466541Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\navigation\\ui\\AppBarConfiguration_OnNavigateUpListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\navigation\\ui\\AppBarConfiguration_OnNavigateUpListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.7714311Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\recyclerview\\widget\\AsyncListDiffer_ListListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\recyclerview\\widget\\AsyncListDiffer_ListListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.7863857Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\recyclerview\\widget\\RecyclerView_ItemAnimator_ItemAnimatorFinishedListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\recyclerview\\widget\\RecyclerView_ItemAnimator_ItemAnimatorFinishedListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.7975066Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\recyclerview\\widget\\RecyclerView_OnChildAttachStateChangeListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\recyclerview\\widget\\RecyclerView_OnChildAttachStateChangeListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.8071160Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\recyclerview\\widget\\RecyclerView_OnItemTouchListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\recyclerview\\widget\\RecyclerView_OnItemTouchListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.8152613Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\recyclerview\\widget\\RecyclerView_RecyclerListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\recyclerview\\widget\\RecyclerView_RecyclerListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.8249407Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\slidingpanelayout\\widget\\SlidingPaneLayout_PanelSlideListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\slidingpanelayout\\widget\\SlidingPaneLayout_PanelSlideListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.8345331Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\swiperefreshlayout\\widget\\SwipeRefreshLayout_OnRefreshListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\swiperefreshlayout\\widget\\SwipeRefreshLayout_OnRefreshListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.8436394Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\transition\\Transition_TransitionListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\transition\\Transition_TransitionListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.8530168Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\viewpager\\widget\\ViewPager_OnAdapterChangeListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\viewpager\\widget\\ViewPager_OnAdapterChangeListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.8615537Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\viewpager\\widget\\ViewPager_OnPageChangeListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\androidx\\viewpager\\widget\\ViewPager_OnPageChangeListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.8759966Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\bumptech\\glide\\load\\engine\\cache\\MemoryCache_ResourceRemovedListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\bumptech\\glide\\load\\engine\\cache\\MemoryCache_ResourceRemovedListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.8871170Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\bumptech\\glide\\manager\\ConnectivityMonitor_ConnectivityListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\bumptech\\glide\\manager\\ConnectivityMonitor_ConnectivityListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.8987272Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\bumptech\\glide\\manager\\LifecycleListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\bumptech\\glide\\manager\\LifecycleListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.9133342Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\bumptech\\glide\\request\\RequestListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\bumptech\\glide\\request\\RequestListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.9311968Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\google\\android\\material\\appbar\\AppBarLayout_LiftOnScrollListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\google\\android\\material\\appbar\\AppBarLayout_LiftOnScrollListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.9447180Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\google\\android\\material\\appbar\\AppBarLayout_OnOffsetChangedListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\google\\android\\material\\appbar\\AppBarLayout_OnOffsetChangedListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.9591405Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\google\\android\\material\\behavior\\SwipeDismissBehavior_OnDismissListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\google\\android\\material\\behavior\\SwipeDismissBehavior_OnDismissListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.9732276Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\google\\android\\material\\button\\MaterialButtonToggleGroup_OnButtonCheckedListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\google\\android\\material\\button\\MaterialButtonToggleGroup_OnButtonCheckedListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.9854054Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\google\\android\\material\\button\\MaterialButton_OnCheckedChangeListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\google\\android\\material\\button\\MaterialButton_OnCheckedChangeListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:15.9995470Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\google\\android\\material\\card\\MaterialCardView_OnCheckedChangeListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\google\\android\\material\\card\\MaterialCardView_OnCheckedChangeListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.0119192Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\google\\android\\material\\chip\\ChipGroup_OnCheckedChangeListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\google\\android\\material\\chip\\ChipGroup_OnCheckedChangeListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.0216308Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\google\\android\\material\\chip\\ChipGroup_OnCheckedStateChangeListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\google\\android\\material\\chip\\ChipGroup_OnCheckedStateChangeListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.0308816Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\google\\android\\material\\datepicker\\MaterialPickerOnPositiveButtonClickListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\google\\android\\material\\datepicker\\MaterialPickerOnPositiveButtonClickListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.0397211Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\google\\android\\material\\internal\\CheckableGroup_OnCheckedStateChangeListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\google\\android\\material\\internal\\CheckableGroup_OnCheckedStateChangeListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.0473709Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\google\\android\\material\\internal\\MaterialCheckable_OnCheckedChangeListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\google\\android\\material\\internal\\MaterialCheckable_OnCheckedChangeListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.0554492Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\google\\android\\material\\internal\\ViewUtils_OnApplyWindowInsetsListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\google\\android\\material\\internal\\ViewUtils_OnApplyWindowInsetsListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.0646580Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\google\\android\\material\\navigation\\NavigationBarView_OnItemReselectedListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\google\\android\\material\\navigation\\NavigationBarView_OnItemReselectedListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.0731357Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\google\\android\\material\\navigation\\NavigationBarView_OnItemSelectedListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\google\\android\\material\\navigation\\NavigationBarView_OnItemSelectedListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.0819141Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\google\\android\\material\\navigation\\NavigationView_OnNavigationItemSelectedListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\google\\android\\material\\navigation\\NavigationView_OnNavigationItemSelectedListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.0909047Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\google\\android\\material\\shape\\ShapeAppearancePathProvider_PathListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\google\\android\\material\\shape\\ShapeAppearancePathProvider_PathListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.0998556Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\google\\android\\material\\slider\\BaseOnChangeListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\google\\android\\material\\slider\\BaseOnChangeListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.1081703Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\google\\android\\material\\slider\\BaseOnSliderTouchListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\google\\android\\material\\slider\\BaseOnSliderTouchListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.1174196Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\google\\android\\material\\tabs\\TabLayout_BaseOnTabSelectedListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\google\\android\\material\\tabs\\TabLayout_BaseOnTabSelectedListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.1272300Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\google\\android\\material\\textfield\\TextInputLayout_OnEditTextAttachedListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\google\\android\\material\\textfield\\TextInputLayout_OnEditTextAttachedListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.1368010Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\google\\android\\material\\textfield\\TextInputLayout_OnEndIconChangedListenerImplementor.class","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\bin\\classes\\mono\\com\\google\\android\\material\\textfield\\TextInputLayout_OnEndIconChangedListenerImplementor.class","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.1395963Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\manifest\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\manifest\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.1512553Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\activity\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\activity\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.1554225Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\activity\\ktx\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\activity\\ktx\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.1604330Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\annotation\\experimental\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\annotation\\experimental\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.1712127Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\appcompat\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\appcompat\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.1848842Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\appcompat\\app\\AlertDialog_IDialogInterfaceOnCancelListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\appcompat\\app\\AlertDialog_IDialogInterfaceOnCancelListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.1972388Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\appcompat\\app\\AlertDialog_IDialogInterfaceOnClickListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\appcompat\\app\\AlertDialog_IDialogInterfaceOnClickListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.2121236Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\appcompat\\app\\AlertDialog_IDialogInterfaceOnMultiChoiceClickListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\appcompat\\app\\AlertDialog_IDialogInterfaceOnMultiChoiceClickListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.2171955Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\appcompat\\resources\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\appcompat\\resources\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.2369502Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\appcompat\\widget\\Toolbar_NavigationOnClickEventDispatcher.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\appcompat\\widget\\Toolbar_NavigationOnClickEventDispatcher.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.2515128Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\browser\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\browser\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.2715380Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\browser\\customtabs\\CustomTabsClient_CustomTabsCallbackImpl.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\browser\\customtabs\\CustomTabsClient_CustomTabsCallbackImpl.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.2874515Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\cardview\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\cardview\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.3052887Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\constraintlayout\\widget\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\constraintlayout\\widget\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.3183280Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\coordinatorlayout\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\coordinatorlayout\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.3322344Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\core\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\core\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.3355990Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\core\\ktx\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\core\\ktx\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.3439813Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\drawerlayout\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\drawerlayout\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.3472893Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\emoji2\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\emoji2\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.3549195Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\emoji2\\viewsintegration\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\emoji2\\viewsintegration\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.3647646Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\fragment\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\fragment\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.3742945Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\fragment\\ktx\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\fragment\\ktx\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.3855488Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\lifecycle\\ktx\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\lifecycle\\ktx\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.3886251Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\lifecycle\\livedata\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\lifecycle\\livedata\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.3963607Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\lifecycle\\livedata\\core\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\lifecycle\\livedata\\core\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.3993280Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\lifecycle\\livedata\\core\\ktx\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\lifecycle\\livedata\\core\\ktx\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.4072093Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\lifecycle\\process\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\lifecycle\\process\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.4151864Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\lifecycle\\runtime\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\lifecycle\\runtime\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.4230723Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\lifecycle\\viewmodel\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\lifecycle\\viewmodel\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.4262006Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\lifecycle\\viewmodel\\ktx\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\lifecycle\\viewmodel\\ktx\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.4333855Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\lifecycle\\viewmodel\\savedstate\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\lifecycle\\viewmodel\\savedstate\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.4411198Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\localbroadcastmanager\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\localbroadcastmanager\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.4493740Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\media\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\media\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.4577072Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\navigation\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\navigation\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.4658160Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\navigation\\common\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\navigation\\common\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.4740500Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\navigation\\fragment\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\navigation\\fragment\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.4824595Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\navigation\\ui\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\navigation\\ui\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.4926446Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\recyclerview\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\recyclerview\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.5020316Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\savedstate\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\savedstate\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.5052392Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\slidingpanelayout\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\slidingpanelayout\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.5136473Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\startup\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\startup\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.5232503Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\swiperefreshlayout\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\swiperefreshlayout\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.5344477Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\transition\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\transition\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.5456714Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\viewpager2\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\viewpager2\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.5557773Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\window\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\androidx\\window\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.5663952Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\com\\bumptech\\glide\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\com\\bumptech\\glide\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.6427284Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\com\\companyname\\plantlady\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\com\\companyname\\plantlady\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.6702987Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\com\\google\\android\\material\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\com\\google\\android\\material\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.6909822Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\com\\google\\android\\material\\snackbar\\Snackbar_SnackbarActionClickImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\com\\google\\android\\material\\snackbar\\Snackbar_SnackbarActionClickImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.7167940Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\com\\microsoft\\maui\\R.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\com\\microsoft\\maui\\R.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.7336449Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640a1f4d108c17e3f1\\ClipboardChangeListener.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640a1f4d108c17e3f1\\ClipboardChangeListener.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.7443198Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640a8d9a12ddbf2cf2\\BatteryBroadcastReceiver.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640a8d9a12ddbf2cf2\\BatteryBroadcastReceiver.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.7529420Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640a8d9a12ddbf2cf2\\DeviceDisplayImplementation_Listener.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640a8d9a12ddbf2cf2\\DeviceDisplayImplementation_Listener.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.7621229Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640a8d9a12ddbf2cf2\\EnergySaverBroadcastReceiver.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640a8d9a12ddbf2cf2\\EnergySaverBroadcastReceiver.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.7721760Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ContainerView.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ContainerView.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.7796934Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\CustomFrameLayout.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\CustomFrameLayout.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.7877471Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\RecyclerViewContainer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\RecyclerViewContainer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.7955427Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ScrollLayoutManager.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ScrollLayoutManager.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.8034505Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellContentFragment.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellContentFragment.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.8113653Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellFlyoutLayout.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellFlyoutLayout.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.8198423Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellFlyoutRecyclerAdapter.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellFlyoutRecyclerAdapter.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.8279509Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellFlyoutRecyclerAdapter_ElementViewHolder.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellFlyoutRecyclerAdapter_ElementViewHolder.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.8368970Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellFlyoutRecyclerAdapter_ShellLinearLayout.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellFlyoutRecyclerAdapter_ShellLinearLayout.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.8454395Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellFlyoutRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellFlyoutRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.8540284Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellFlyoutTemplatedContentRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellFlyoutTemplatedContentRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.8625777Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellFlyoutTemplatedContentRenderer_HeaderContainer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellFlyoutTemplatedContentRenderer_HeaderContainer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.8710351Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellFragmentContainer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellFragmentContainer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.8796311Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellFragmentStateAdapter.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellFragmentStateAdapter.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.8894844Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellItemRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellItemRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.8986278Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellItemRendererBase.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellItemRendererBase.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.9077709Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellPageContainer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellPageContainer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.9162688Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellSearchView.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellSearchView.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.9255968Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellSearchViewAdapter.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellSearchViewAdapter.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.9345186Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellSearchViewAdapter_CustomFilter.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellSearchViewAdapter_CustomFilter.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.9442144Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellSearchViewAdapter_ObjectWrapper.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellSearchViewAdapter_ObjectWrapper.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.9527019Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellSearchView_ClipDrawableWrapper.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellSearchView_ClipDrawableWrapper.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.9618158Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellSectionRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellSectionRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.9705123Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellSectionRenderer_ViewPagerPageChanged.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellSectionRenderer_ViewPagerPageChanged.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.9791523Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellToolbarTracker.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellToolbarTracker.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.9876159Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellToolbarTracker_FlyoutIconDrawerDrawable.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc640ec207abc449b2ca\\ShellToolbarTracker_FlyoutIconDrawerDrawable.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:16.9976527Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64124e178812aeed4c\\ButtonRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64124e178812aeed4c\\ButtonRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.0060464Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64124e178812aeed4c\\FrameRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64124e178812aeed4c\\FrameRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.0150794Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64124e178812aeed4c\\ImageRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64124e178812aeed4c\\ImageRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.0229243Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64124e178812aeed4c\\LabelRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64124e178812aeed4c\\LabelRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.0318810Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6413a2ffd8f229512a\\CarouselViewAdapter_2.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6413a2ffd8f229512a\\CarouselViewAdapter_2.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.0397596Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6413a2ffd8f229512a\\RecyclerViewScrollListener_2.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6413a2ffd8f229512a\\RecyclerViewScrollListener_2.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.0502113Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64338477404e88479c\\ColorChangeRevealDrawable.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64338477404e88479c\\ColorChangeRevealDrawable.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.0590619Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64338477404e88479c\\ControlsAccessibilityDelegate.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64338477404e88479c\\ControlsAccessibilityDelegate.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.0686109Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64338477404e88479c\\DragAndDropGestureHandler.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64338477404e88479c\\DragAndDropGestureHandler.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.0781209Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64338477404e88479c\\DragAndDropGestureHandler_CustomLocalStateData.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64338477404e88479c\\DragAndDropGestureHandler_CustomLocalStateData.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.0878313Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64338477404e88479c\\FormattedStringExtensions_FontSpan.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64338477404e88479c\\FormattedStringExtensions_FontSpan.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.0970580Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64338477404e88479c\\FormattedStringExtensions_LetterSpacingSpan.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64338477404e88479c\\FormattedStringExtensions_LetterSpacingSpan.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.1062521Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64338477404e88479c\\FormattedStringExtensions_LineHeightSpan.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64338477404e88479c\\FormattedStringExtensions_LineHeightSpan.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.1160985Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64338477404e88479c\\FragmentContainer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64338477404e88479c\\FragmentContainer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.1263845Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64338477404e88479c\\GenericAnimatorListener.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64338477404e88479c\\GenericAnimatorListener.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.1394940Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64338477404e88479c\\GenericGlobalLayoutListener.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64338477404e88479c\\GenericGlobalLayoutListener.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.1531261Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64338477404e88479c\\GenericMenuClickListener.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64338477404e88479c\\GenericMenuClickListener.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.1673236Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64338477404e88479c\\GradientStrokeDrawable.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64338477404e88479c\\GradientStrokeDrawable.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.1807944Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64338477404e88479c\\GradientStrokeDrawable_GradientShaderFactory.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64338477404e88479c\\GradientStrokeDrawable_GradientShaderFactory.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.1944140Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64338477404e88479c\\InnerGestureListener.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64338477404e88479c\\InnerGestureListener.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.2081270Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64338477404e88479c\\InnerScaleListener.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64338477404e88479c\\InnerScaleListener.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.2219532Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64338477404e88479c\\MauiViewPager.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64338477404e88479c\\MauiViewPager.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.2300872Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64338477404e88479c\\ModalNavigationManager_ModalContainer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64338477404e88479c\\ModalNavigationManager_ModalContainer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.2382229Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64338477404e88479c\\ModalNavigationManager_ModalContainer_ModalFragment.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64338477404e88479c\\ModalNavigationManager_ModalContainer_ModalFragment.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.2458629Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64338477404e88479c\\MultiPageFragmentStateAdapter_1.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64338477404e88479c\\MultiPageFragmentStateAdapter_1.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.2536743Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64338477404e88479c\\TapAndPanGestureDetector.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64338477404e88479c\\TapAndPanGestureDetector.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.2616232Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64338477404e88479c\\ToolbarExtensions_ToolbarTitleIconImageView.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64338477404e88479c\\ToolbarExtensions_ToolbarTitleIconImageView.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.2698748Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64396a3fe5f8138e3f\\CustomTabsServiceConnectionImpl.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64396a3fe5f8138e3f\\CustomTabsServiceConnectionImpl.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.2774597Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64396a3fe5f8138e3f\\KeepAliveService.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64396a3fe5f8138e3f\\KeepAliveService.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.2859256Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc643f2b18b2570eaa5a\\PlatformGraphicsView.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc643f2b18b2570eaa5a\\PlatformGraphicsView.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.2963596Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\AccessibilityDelegateCompatWrapper.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\AccessibilityDelegateCompatWrapper.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.3036961Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\BorderDrawable.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\BorderDrawable.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.3112551Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\ContainerView.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\ContainerView.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.3186718Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\ContentViewGroup.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\ContentViewGroup.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.3263459Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\LayoutViewGroup.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\LayoutViewGroup.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.3337814Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\LocalizedDigitsKeyListener.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\LocalizedDigitsKeyListener.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.3410808Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\MauiAccessibilityDelegateCompat.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\MauiAccessibilityDelegateCompat.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.3488372Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\MauiAppCompatEditText.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\MauiAppCompatEditText.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.3570491Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\MauiBoxView.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\MauiBoxView.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.3652688Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\MauiDatePicker.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\MauiDatePicker.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.3738313Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\MauiHorizontalScrollView.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\MauiHorizontalScrollView.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.3820633Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\MauiMaterialButton.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\MauiMaterialButton.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.3909005Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\MauiPageControl.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\MauiPageControl.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.3994829Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\MauiPageControl_TEditClickListener.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\MauiPageControl_TEditClickListener.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.4075090Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\MauiPicker.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\MauiPicker.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.4157584Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\MauiPickerBase.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\MauiPickerBase.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.4245815Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\MauiScrollView.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\MauiScrollView.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.4337272Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\MauiShapeView.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\MauiShapeView.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.4434781Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\MauiStepper.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\MauiStepper.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.4559627Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\MauiSwipeRefreshLayout.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\MauiSwipeRefreshLayout.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.4680445Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\MauiSwipeView.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\MauiSwipeView.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.4796461Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\MauiTextView.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\MauiTextView.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.4915280Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\MauiTimePicker.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\MauiTimePicker.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.5037272Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\MauiWebChromeClient.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\MauiWebChromeClient.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.5171754Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\MauiWebView.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\MauiWebView.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.5291036Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\MauiWebViewClient.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\MauiWebViewClient.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.5409386Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\NavigationViewFragment.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\NavigationViewFragment.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.5544749Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\PlatformTouchGraphicsView.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\PlatformTouchGraphicsView.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.5673328Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\ScopedFragment.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\ScopedFragment.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.5795920Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\StackNavigationManager_Callbacks.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\StackNavigationManager_Callbacks.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.5920719Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\StackNavigationManager_StackContext.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\StackNavigationManager_StackContext.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.6045591Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\StackNavigationManager_StackLayoutInflater.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\StackNavigationManager_StackLayoutInflater.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.6143426Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\StepperHandlerHolder.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\StepperHandlerHolder.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.6233811Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\StepperHandlerManager_StepperListener.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\StepperHandlerManager_StepperListener.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.6332411Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\SwipeViewPager.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\SwipeViewPager.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.6431700Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\ViewFragment.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\ViewFragment.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.6508885Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\WebViewExtensions_JavascriptResult.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\WebViewExtensions_JavascriptResult.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.6579551Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\WrapperView.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6452ffdc5b34af3a0f\\WrapperView.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.6672496Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\CarouselSpacingItemDecoration.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\CarouselSpacingItemDecoration.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.6753337Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\CarouselViewAdapter_2.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\CarouselViewAdapter_2.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.6834700Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\CarouselViewOnScrollListener.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\CarouselViewOnScrollListener.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.6911296Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\CarouselViewwOnGlobalLayoutListener.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\CarouselViewwOnGlobalLayoutListener.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.6993565Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\CenterSnapHelper.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\CenterSnapHelper.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.7071081Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\DataChangeObserver.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\DataChangeObserver.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.7146658Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\EdgeSnapHelper.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\EdgeSnapHelper.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.7227275Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\EmptyViewAdapter.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\EmptyViewAdapter.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.7315489Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\EndSingleSnapHelper.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\EndSingleSnapHelper.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.7399882Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\EndSnapHelper.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\EndSnapHelper.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.7496904Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\GridLayoutSpanSizeLookup.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\GridLayoutSpanSizeLookup.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.7612297Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\GroupableItemsViewAdapter_2.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\GroupableItemsViewAdapter_2.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.7746303Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\ItemContentView.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\ItemContentView.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.7916032Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\ItemsViewAdapter_2.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\ItemsViewAdapter_2.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.8083803Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\MauiCarouselRecyclerView.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\MauiCarouselRecyclerView.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.8254595Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\MauiRecyclerView_3.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\MauiRecyclerView_3.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.8427792Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\NongreedySnapHelper.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\NongreedySnapHelper.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.8593005Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\NongreedySnapHelper_InitialScrollListener.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\NongreedySnapHelper_InitialScrollListener.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.8752303Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\PositionalSmoothScroller.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\PositionalSmoothScroller.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.8916443Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\RecyclerViewScrollListener_2.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\RecyclerViewScrollListener_2.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.9072053Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\ReorderableItemsViewAdapter_2.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\ReorderableItemsViewAdapter_2.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.9232820Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\ScrollHelper.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\ScrollHelper.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.9378087Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\SelectableItemsViewAdapter_2.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\SelectableItemsViewAdapter_2.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.9492457Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\SelectableViewHolder.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\SelectableViewHolder.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.9576553Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\SimpleItemTouchHelperCallback.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\SimpleItemTouchHelperCallback.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.9655475Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\SimpleViewHolder.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\SimpleViewHolder.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.9740595Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\SingleSnapHelper.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\SingleSnapHelper.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.9845056Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\SizedItemContentView.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\SizedItemContentView.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:17.9953288Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\SpacingItemDecoration.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\SpacingItemDecoration.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.0074505Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\StartSingleSnapHelper.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\StartSingleSnapHelper.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.0217225Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\StartSnapHelper.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\StartSnapHelper.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.0340434Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\StructuredItemsViewAdapter_2.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\StructuredItemsViewAdapter_2.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.0477564Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\TemplatedItemViewHolder.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\TemplatedItemViewHolder.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.0602583Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\TextViewHolder.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc645d80431ce5f73f11\\TextViewHolder.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.0748558Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6468b6408a11370c2f\\WebAuthenticatorCallbackActivity.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6468b6408a11370c2f\\WebAuthenticatorCallbackActivity.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.0864343Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6468b6408a11370c2f\\WebAuthenticatorIntermediateActivity.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6468b6408a11370c2f\\WebAuthenticatorIntermediateActivity.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.1059017Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ActivityIndicatorRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ActivityIndicatorRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.1187256Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\AHorizontalScrollView.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\AHorizontalScrollView.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.1308699Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\BorderDrawable.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\BorderDrawable.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.1433644Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\BoxRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\BoxRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.1562499Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\CarouselPageAdapter.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\CarouselPageAdapter.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.1694840Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\CarouselSpacingItemDecoration.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\CarouselSpacingItemDecoration.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.1809745Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\CarouselViewRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\CarouselViewRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.1906571Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\CarouselViewRenderer_CarouselViewOnScrollListener.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\CarouselViewRenderer_CarouselViewOnScrollListener.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.1993967Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\CarouselViewRenderer_CarouselViewwOnGlobalLayoutListener.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\CarouselViewRenderer_CarouselViewwOnGlobalLayoutListener.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.2088004Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\CellRenderer_RendererHolder.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\CellRenderer_RendererHolder.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.2196942Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\CenterSnapHelper.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\CenterSnapHelper.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.2339999Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\CheckBoxRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\CheckBoxRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.2514085Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\CheckBoxRendererBase.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\CheckBoxRendererBase.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.2688433Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\CircularProgress.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\CircularProgress.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.2863007Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\CollectionViewRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\CollectionViewRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.3029371Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\DataChangeObserver.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\DataChangeObserver.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.3119021Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\DatePickerRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\DatePickerRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.3195906Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\DatePickerRendererBase_1.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\DatePickerRendererBase_1.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.3295203Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\DragAndDropGestureHandler.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\DragAndDropGestureHandler.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.3395483Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\DragAndDropGestureHandler_CustomLocalStateData.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\DragAndDropGestureHandler_CustomLocalStateData.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.3487641Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\EdgeSnapHelper.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\EdgeSnapHelper.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.3561354Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\EditorRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\EditorRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.3632419Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\EditorRendererBase_1.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\EditorRendererBase_1.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.3704955Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\EllipseRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\EllipseRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.3772577Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\EllipseView.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\EllipseView.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.3851565Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\EmptyViewAdapter.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\EmptyViewAdapter.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.3920043Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\EndSingleSnapHelper.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\EndSingleSnapHelper.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.3992795Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\EndSnapHelper.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\EndSnapHelper.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.4062205Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\EntryAccessibilityDelegate.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\EntryAccessibilityDelegate.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.4127261Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\EntryRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\EntryRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.4203796Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\EntryRendererBase_1.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\EntryRendererBase_1.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.4275218Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\FlyoutPageContainer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\FlyoutPageContainer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.4344414Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\FlyoutPageRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\FlyoutPageRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.4418039Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\FormsAnimationDrawable.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\FormsAnimationDrawable.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.4499216Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\FormsAppCompatActivity.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\FormsAppCompatActivity.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.4580505Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\FormsEditText.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\FormsEditText.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.4655341Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\FormsEditTextBase.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\FormsEditTextBase.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.4729097Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\FormsImageView.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\FormsImageView.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.4804265Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\FormsSeekBar.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\FormsSeekBar.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.4878402Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\FormsTextView.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\FormsTextView.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.4957589Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\FormsVideoView.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\FormsVideoView.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.5040298Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\FormsWebChromeClient.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\FormsWebChromeClient.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.5128245Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\FormsWebViewClient.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\FormsWebViewClient.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.5226597Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\GridLayoutSpanSizeLookup.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\GridLayoutSpanSizeLookup.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.5331788Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\GroupableItemsViewAdapter_2.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\GroupableItemsViewAdapter_2.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.5457213Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\GroupableItemsViewRenderer_3.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\GroupableItemsViewRenderer_3.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.5580609Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\GroupedListViewAdapter.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\GroupedListViewAdapter.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.5709422Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ImageButtonRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ImageButtonRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.5834819Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ImageCache_CacheEntry.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ImageCache_CacheEntry.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.5957670Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ImageCache_FormsLruCache.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ImageCache_FormsLruCache.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.6082156Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ImageRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ImageRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.6189906Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\IndicatorViewRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\IndicatorViewRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.6283938Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ItemContentView.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ItemContentView.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.6375029Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ItemsViewAdapter_2.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ItemsViewAdapter_2.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.6457420Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ItemsViewRenderer_3.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ItemsViewRenderer_3.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.6543795Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\LabelRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\LabelRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.6629874Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\LineRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\LineRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.6713689Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\LineView.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\LineView.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.6796767Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ListViewAdapter.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ListViewAdapter.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.6889770Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ListViewRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ListViewRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.6988693Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ListViewRenderer_Container.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ListViewRenderer_Container.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.7099142Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ListViewRenderer_ListViewScrollDetector.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ListViewRenderer_ListViewScrollDetector.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.7210999Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ListViewRenderer_SwipeRefreshLayoutWithFixedNestedScrolling.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ListViewRenderer_SwipeRefreshLayoutWithFixedNestedScrolling.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.7339908Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\NativeViewWrapperRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\NativeViewWrapperRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.7460700Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\NongreedySnapHelper.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\NongreedySnapHelper.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.7590485Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\NongreedySnapHelper_InitialScrollListener.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\NongreedySnapHelper_InitialScrollListener.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.7712218Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ObjectJavaBox_1.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ObjectJavaBox_1.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.7836248Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\OpenGLViewRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\OpenGLViewRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.7967458Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\OpenGLViewRenderer_Renderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\OpenGLViewRenderer_Renderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.8071689Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\PageContainer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\PageContainer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.8165870Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\PageExtensions_EmbeddedFragment.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\PageExtensions_EmbeddedFragment.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.8279476Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\PageExtensions_EmbeddedSupportFragment.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\PageExtensions_EmbeddedSupportFragment.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.8376922Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\PageRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\PageRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.8472448Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\PathRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\PathRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.8570863Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\PathView.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\PathView.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.8671031Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\PickerEditText.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\PickerEditText.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.8786473Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\PickerManager_PickerListener.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\PickerManager_PickerListener.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.8907758Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\PlatformRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\PlatformRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.9035699Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\Platform_DefaultRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\Platform_DefaultRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.9167322Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\Platform_ModalContainer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\Platform_ModalContainer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.9306291Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\PolygonRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\PolygonRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.9433740Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\PolygonView.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\PolygonView.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.9594732Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\PolylineRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\PolylineRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.9767360Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\PolylineView.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\PolylineView.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:18.9921616Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\PositionalSmoothScroller.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\PositionalSmoothScroller.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.0051768Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ProgressBarRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ProgressBarRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.0177849Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\RadioButtonRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\RadioButtonRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.0307925Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\RectangleRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\RectangleRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.0431118Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\RectView.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\RectView.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.0557782Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\RefreshViewRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\RefreshViewRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.0687707Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ScrollHelper.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ScrollHelper.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.0813836Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ScrollViewContainer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ScrollViewContainer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.0943726Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ScrollViewRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ScrollViewRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.1072215Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\SearchBarRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\SearchBarRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.1193917Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\SelectableItemsViewAdapter_2.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\SelectableItemsViewAdapter_2.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.1325567Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\SelectableItemsViewRenderer_3.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\SelectableItemsViewRenderer_3.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.1453554Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\SelectableViewHolder.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\SelectableViewHolder.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.1558814Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ShapeRenderer_2.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ShapeRenderer_2.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.1657062Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ShapeView.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ShapeView.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.1776670Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\SimpleViewHolder.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\SimpleViewHolder.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.1900386Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\SingleSnapHelper.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\SingleSnapHelper.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.2022215Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\SizedItemContentView.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\SizedItemContentView.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.2144022Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\SliderRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\SliderRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.2281060Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\SpacingItemDecoration.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\SpacingItemDecoration.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.2410839Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\StartSingleSnapHelper.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\StartSingleSnapHelper.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.2532697Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\StartSnapHelper.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\StartSnapHelper.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.2652170Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\StepperRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\StepperRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.2782594Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\StepperRendererManager_StepperListener.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\StepperRendererManager_StepperListener.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.2910230Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\StructuredItemsViewAdapter_2.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\StructuredItemsViewAdapter_2.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.3047698Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\StructuredItemsViewRenderer_3.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\StructuredItemsViewRenderer_3.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.3174728Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\SwipeViewRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\SwipeViewRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.3306335Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\TableViewModelRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\TableViewModelRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.3427933Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\TableViewRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\TableViewRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.3554290Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\TemplatedItemViewHolder.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\TemplatedItemViewHolder.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.3696079Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\TextCellRenderer_TextCellView.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\TextCellRenderer_TextCellView.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.3812404Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\TextViewHolder.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\TextViewHolder.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.3897147Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\TimePickerRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\TimePickerRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.3973416Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\TimePickerRendererBase_1.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\TimePickerRendererBase_1.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.4042199Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ViewCellRenderer_ViewCellContainer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ViewCellRenderer_ViewCellContainer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.4124333Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ViewCellRenderer_ViewCellContainer_LongPressGestureListener.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ViewCellRenderer_ViewCellContainer_LongPressGestureListener.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.4204608Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ViewCellRenderer_ViewCellContainer_TapGestureListener.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ViewCellRenderer_ViewCellContainer_TapGestureListener.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.4279329Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ViewRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ViewRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.4359308Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ViewRenderer_2.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\ViewRenderer_2.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.4444904Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\VisualElementRenderer_1.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\VisualElementRenderer_1.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.4523679Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\VisualElementTracker_AttachTracker.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\VisualElementTracker_AttachTracker.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.4618402Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\WebViewRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\WebViewRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.4709246Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\WebViewRenderer_JavascriptResult.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6477f0d89a9cfd64b1\\WebViewRenderer_JavascriptResult.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.4815370Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6488302ad6e9e4df1a\\ImageLoaderCallback.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6488302ad6e9e4df1a\\ImageLoaderCallback.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.4915333Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6488302ad6e9e4df1a\\ImageLoaderCallbackBase_1.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6488302ad6e9e4df1a\\ImageLoaderCallbackBase_1.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.5017123Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6488302ad6e9e4df1a\\ImageLoaderResultCallback.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6488302ad6e9e4df1a\\ImageLoaderResultCallback.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.5131796Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6488302ad6e9e4df1a\\MauiAppCompatActivity.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6488302ad6e9e4df1a\\MauiAppCompatActivity.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.5233796Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6488302ad6e9e4df1a\\MauiApplication.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6488302ad6e9e4df1a\\MauiApplication.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.5346265Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6488302ad6e9e4df1a\\MauiApplication_ActivityLifecycleCallbacks.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6488302ad6e9e4df1a\\MauiApplication_ActivityLifecycleCallbacks.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.5481022Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc648869a3bc33bc8f58\\MainActivity.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc648869a3bc33bc8f58\\MainActivity.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.5579041Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc648869a3bc33bc8f58\\MainApplication.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc648869a3bc33bc8f58\\MainApplication.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.5698646Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc648afdc667cfb0dccb\\ButtonRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc648afdc667cfb0dccb\\ButtonRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.5792776Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc648afdc667cfb0dccb\\CarouselPageRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc648afdc667cfb0dccb\\CarouselPageRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.5875872Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc648afdc667cfb0dccb\\FormsFragmentPagerAdapter_1.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc648afdc667cfb0dccb\\FormsFragmentPagerAdapter_1.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.5951015Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc648afdc667cfb0dccb\\FormsViewPager.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc648afdc667cfb0dccb\\FormsViewPager.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.6035990Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc648afdc667cfb0dccb\\FragmentContainer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc648afdc667cfb0dccb\\FragmentContainer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.6122257Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc648afdc667cfb0dccb\\FrameRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc648afdc667cfb0dccb\\FrameRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.6221573Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc648afdc667cfb0dccb\\NavigationPageRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc648afdc667cfb0dccb\\NavigationPageRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.6329696Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc648afdc667cfb0dccb\\NavigationPageRenderer_ClickListener.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc648afdc667cfb0dccb\\NavigationPageRenderer_ClickListener.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.6441015Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc648afdc667cfb0dccb\\NavigationPageRenderer_Container.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc648afdc667cfb0dccb\\NavigationPageRenderer_Container.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.6553110Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc648afdc667cfb0dccb\\NavigationPageRenderer_DrawerMultiplexedListener.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc648afdc667cfb0dccb\\NavigationPageRenderer_DrawerMultiplexedListener.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.6663507Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc648afdc667cfb0dccb\\PickerRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc648afdc667cfb0dccb\\PickerRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.6770489Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc648afdc667cfb0dccb\\PickerRendererBase_1.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc648afdc667cfb0dccb\\PickerRendererBase_1.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.6877115Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc648afdc667cfb0dccb\\SwitchRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc648afdc667cfb0dccb\\SwitchRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.6976692Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc648afdc667cfb0dccb\\TabbedPageRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc648afdc667cfb0dccb\\TabbedPageRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.7053906Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc648afdc667cfb0dccb\\ViewRenderer_2.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc648afdc667cfb0dccb\\ViewRenderer_2.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.7149950Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6493855b22b6fa0721\\TextToSpeechInternalImplementation.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc6493855b22b6fa0721\\TextToSpeechInternalImplementation.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.7243994Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc649ff77a65592e7d55\\TabbedPageManager_Listeners.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc649ff77a65592e7d55\\TabbedPageManager_Listeners.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.7337369Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc649ff77a65592e7d55\\TabbedPageManager_TempView.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc649ff77a65592e7d55\\TabbedPageManager_TempView.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.7469600Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64a25b61d9f8ee364f\\FloatArrayEvaluator.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64a25b61d9f8ee364f\\FloatArrayEvaluator.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.7592578Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64a25b61d9f8ee364f\\RectEvaluator.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64a25b61d9f8ee364f\\RectEvaluator.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.7710534Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64a25b61d9f8ee364f\\TransitionUtils.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64a25b61d9f8ee364f\\TransitionUtils.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.7832410Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64a25b61d9f8ee364f\\TransitionUtils_MatrixEvaluator.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64a25b61d9f8ee364f\\TransitionUtils_MatrixEvaluator.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.7967323Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64b5e713d400f589b7\\LinearGradientShaderFactory.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64b5e713d400f589b7\\LinearGradientShaderFactory.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.8077763Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64b5e713d400f589b7\\MauiDrawable.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64b5e713d400f589b7\\MauiDrawable.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.8197627Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64b5e713d400f589b7\\RadialGradientShaderFactory.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64b5e713d400f589b7\\RadialGradientShaderFactory.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.8340952Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64ba438d8f48cf7e75\\ActivityLifecycleContextListener.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64ba438d8f48cf7e75\\ActivityLifecycleContextListener.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.8498044Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64ba438d8f48cf7e75\\IntermediateActivity.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64ba438d8f48cf7e75\\IntermediateActivity.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.8650646Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\BaseCellView.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\BaseCellView.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.8781787Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\CellAdapter.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\CellAdapter.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.8904576Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\CellRenderer_RendererHolder.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\CellRenderer_RendererHolder.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.9032712Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\ConditionalFocusLayout.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\ConditionalFocusLayout.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.9162395Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\EntryCellEditText.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\EntryCellEditText.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.9282466Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\EntryCellView.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\EntryCellView.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.9400757Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\FrameRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\FrameRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.9504966Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\GroupedListViewAdapter.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\GroupedListViewAdapter.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.9606883Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\ListViewAdapter.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\ListViewAdapter.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.9710704Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\ListViewRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\ListViewRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.9815102Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\ListViewRenderer_Container.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\ListViewRenderer_Container.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:19.9912364Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\ListViewRenderer_ListViewScrollDetector.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\ListViewRenderer_ListViewScrollDetector.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.0013403Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\ListViewRenderer_ListViewSwipeRefreshLayoutListener.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\ListViewRenderer_ListViewSwipeRefreshLayoutListener.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.0102594Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\ListViewRenderer_SwipeRefreshLayoutWithFixedNestedScrolling.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\ListViewRenderer_SwipeRefreshLayoutWithFixedNestedScrolling.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.0193946Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\ShellRenderer_SplitDrawable.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\ShellRenderer_SplitDrawable.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.0287621Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\SwitchCellView.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\SwitchCellView.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.0377284Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\TableViewModelRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\TableViewModelRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.0461225Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\TableViewRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\TableViewRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.0547431Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\TextCellRenderer_TextCellView.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\TextCellRenderer_TextCellView.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.0636903Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\ViewCellRenderer_ViewCellContainer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\ViewCellRenderer_ViewCellContainer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.0728174Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\ViewCellRenderer_ViewCellContainer_LongPressGestureListener.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\ViewCellRenderer_ViewCellContainer_LongPressGestureListener.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.0817885Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\ViewCellRenderer_ViewCellContainer_TapGestureListener.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\ViewCellRenderer_ViewCellContainer_TapGestureListener.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.0899097Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\ViewRenderer.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\ViewRenderer.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.0970779Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\ViewRenderer_2.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\ViewRenderer_2.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.1040135Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\VisualElementRenderer_1.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e1fb321c08285b90\\VisualElementRenderer_1.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.1114852Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e53d2f592022988e\\ConnectivityBroadcastReceiver.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e53d2f592022988e\\ConnectivityBroadcastReceiver.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.1186222Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e53d2f592022988e\\ConnectivityImplementation_EssentialsNetworkCallback.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64e53d2f592022988e\\ConnectivityImplementation_EssentialsNetworkCallback.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.1273383Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64f62664462a8937a9\\AccelerometerListener.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64f62664462a8937a9\\AccelerometerListener.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.1342332Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64f62664462a8937a9\\BarometerListener.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64f62664462a8937a9\\BarometerListener.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.1413204Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64f62664462a8937a9\\GyroscopeListener.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64f62664462a8937a9\\GyroscopeListener.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.1485203Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64f62664462a8937a9\\MagnetometerListener.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64f62664462a8937a9\\MagnetometerListener.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.1558014Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64f62664462a8937a9\\OrientationSensorListener.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64f62664462a8937a9\\OrientationSensorListener.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.1626824Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64f62664462a8937a9\\SensorListener.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64f62664462a8937a9\\SensorListener.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.1700777Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64f62664462a8937a9\\SingleLocationListener.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64f62664462a8937a9\\SingleLocationListener.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.1778238Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64f728827fec74e9c3\\Toolbar_Container.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64f728827fec74e9c3\\Toolbar_Container.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.1857445Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64fcf28c0e24b4cc31\\ButtonHandler_ButtonClickListener.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64fcf28c0e24b4cc31\\ButtonHandler_ButtonClickListener.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.1930990Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64fcf28c0e24b4cc31\\ButtonHandler_ButtonTouchListener.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64fcf28c0e24b4cc31\\ButtonHandler_ButtonTouchListener.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.1997489Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64fcf28c0e24b4cc31\\SliderHandler_SeekBarChangeListener.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64fcf28c0e24b4cc31\\SliderHandler_SeekBarChangeListener.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.2067777Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64fcf28c0e24b4cc31\\SwitchHandler_CheckedChangeListener.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64fcf28c0e24b4cc31\\SwitchHandler_CheckedChangeListener.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.2137929Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64fcf28c0e24b4cc31\\ToolbarHandler_ProcessBackClick.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\crc64fcf28c0e24b4cc31\\ToolbarHandler_ProcessBackClick.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.2243737Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\microsoft\\maui\\essentials\\fileProvider.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\microsoft\\maui\\essentials\\fileProvider.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.2340722Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\MonoPackageManager_Resources.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\MonoPackageManager_Resources.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.2420157Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\MonoRuntimeProvider.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\MonoRuntimeProvider.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.2554667Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\android\\app\\ApplicationRegistration.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\android\\app\\ApplicationRegistration.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.2708489Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\android\\support\\v4\\media\\session\\MediaSessionCompat_OnActiveChangeListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\android\\support\\v4\\media\\session\\MediaSessionCompat_OnActiveChangeListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.2867288Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\activity\\contextaware\\OnContextAvailableListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\activity\\contextaware\\OnContextAvailableListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.3011864Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\appcompat\\app\\ActionBar_OnMenuVisibilityListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\appcompat\\app\\ActionBar_OnMenuVisibilityListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.3163245Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\appcompat\\app\\ActionBar_OnNavigationListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\appcompat\\app\\ActionBar_OnNavigationListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.3323951Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\appcompat\\app\\ActionBar_TabListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\appcompat\\app\\ActionBar_TabListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.3511684Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\appcompat\\widget\\ActionMenuView_OnMenuItemClickListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\appcompat\\widget\\ActionMenuView_OnMenuItemClickListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.3675100Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\appcompat\\widget\\ContentFrameLayout_OnAttachListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\appcompat\\widget\\ContentFrameLayout_OnAttachListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.3849057Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\appcompat\\widget\\FitWindowsViewGroup_OnFitSystemWindowsListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\appcompat\\widget\\FitWindowsViewGroup_OnFitSystemWindowsListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.4020589Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\appcompat\\widget\\MenuItemHoverListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\appcompat\\widget\\MenuItemHoverListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.4178389Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\appcompat\\widget\\PopupMenu_OnDismissListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\appcompat\\widget\\PopupMenu_OnDismissListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.4308026Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\appcompat\\widget\\PopupMenu_OnMenuItemClickListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\appcompat\\widget\\PopupMenu_OnMenuItemClickListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.4392668Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\appcompat\\widget\\SearchView_OnCloseListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\appcompat\\widget\\SearchView_OnCloseListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.4490176Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\appcompat\\widget\\SearchView_OnQueryTextListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\appcompat\\widget\\SearchView_OnQueryTextListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.4578537Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\appcompat\\widget\\SearchView_OnSuggestionListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\appcompat\\widget\\SearchView_OnSuggestionListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.4669067Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\appcompat\\widget\\ShareActionProvider_OnShareTargetSelectedListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\appcompat\\widget\\ShareActionProvider_OnShareTargetSelectedListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.4761465Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\appcompat\\widget\\Toolbar_OnMenuItemClickListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\appcompat\\widget\\Toolbar_OnMenuItemClickListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.4854771Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\appcompat\\widget\\ViewStubCompat_OnInflateListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\appcompat\\widget\\ViewStubCompat_OnInflateListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.4955213Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\asynclayoutinflater\\view\\AsyncLayoutInflater_OnInflateFinishedListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\asynclayoutinflater\\view\\AsyncLayoutInflater_OnInflateFinishedListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.5084639Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\constraintlayout\\motion\\widget\\MotionLayout_TransitionListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\constraintlayout\\motion\\widget\\MotionLayout_TransitionListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.5192380Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\constraintlayout\\widget\\SharedValues_SharedValuesListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\constraintlayout\\widget\\SharedValues_SharedValuesListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.5310379Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\core\\app\\SharedElementCallback_OnSharedElementsReadyListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\core\\app\\SharedElementCallback_OnSharedElementsReadyListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.5413468Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\core\\os\\CancellationSignal_OnCancelListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\core\\os\\CancellationSignal_OnCancelListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.5524683Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\core\\view\\ActionProvider_SubUiVisibilityListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\core\\view\\ActionProvider_SubUiVisibilityListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.5629024Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\core\\view\\ActionProvider_VisibilityListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\core\\view\\ActionProvider_VisibilityListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.5748678Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\core\\view\\DragStartHelper_OnDragStartListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\core\\view\\DragStartHelper_OnDragStartListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.5868514Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\core\\view\\MenuItemCompat_OnActionExpandListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\core\\view\\MenuItemCompat_OnActionExpandListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.5983598Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\core\\view\\OnApplyWindowInsetsListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\core\\view\\OnApplyWindowInsetsListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.6096513Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\core\\view\\OnReceiveContentListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\core\\view\\OnReceiveContentListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.6222331Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\core\\view\\ViewPropertyAnimatorListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\core\\view\\ViewPropertyAnimatorListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.6367004Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\core\\view\\ViewPropertyAnimatorUpdateListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\core\\view\\ViewPropertyAnimatorUpdateListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.6530568Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\core\\view\\WindowInsetsControllerCompat_OnControllableInsetsChangedListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\core\\view\\WindowInsetsControllerCompat_OnControllableInsetsChangedListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.6707147Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\core\\view\\accessibility\\AccessibilityManagerCompat_AccessibilityStateChangeListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\core\\view\\accessibility\\AccessibilityManagerCompat_AccessibilityStateChangeListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.6881272Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\core\\view\\accessibility\\AccessibilityManagerCompat_TouchExplorationStateChangeListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\core\\view\\accessibility\\AccessibilityManagerCompat_TouchExplorationStateChangeListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.7065741Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\core\\view\\inputmethod\\InputConnectionCompat_OnCommitContentListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\core\\view\\inputmethod\\InputConnectionCompat_OnCommitContentListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.7245371Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\core\\widget\\NestedScrollView_OnScrollChangeListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\core\\widget\\NestedScrollView_OnScrollChangeListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.7443894Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\drawerlayout\\widget\\DrawerLayout_DrawerListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\drawerlayout\\widget\\DrawerLayout_DrawerListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.7636718Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\dynamicanimation\\animation\\DynamicAnimation_OnAnimationEndListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\dynamicanimation\\animation\\DynamicAnimation_OnAnimationEndListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.7801166Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\dynamicanimation\\animation\\DynamicAnimation_OnAnimationUpdateListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\dynamicanimation\\animation\\DynamicAnimation_OnAnimationUpdateListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.7989373Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\fragment\\app\\FragmentManager_OnBackStackChangedListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\fragment\\app\\FragmentManager_OnBackStackChangedListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.8152061Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\fragment\\app\\FragmentOnAttachListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\fragment\\app\\FragmentOnAttachListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.8287641Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\fragment\\app\\FragmentResultListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\fragment\\app\\FragmentResultListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.8425692Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\fragment\\app\\strictmode\\FragmentStrictMode_OnViolationListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\fragment\\app\\strictmode\\FragmentStrictMode_OnViolationListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.8573825Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\loader\\content\\Loader_OnLoadCanceledListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\loader\\content\\Loader_OnLoadCanceledListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.8662628Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\loader\\content\\Loader_OnLoadCompleteListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\loader\\content\\Loader_OnLoadCompleteListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.8758519Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\navigation\\NavController_OnDestinationChangedListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\navigation\\NavController_OnDestinationChangedListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.8849598Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\navigation\\ui\\AppBarConfiguration_OnNavigateUpListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\navigation\\ui\\AppBarConfiguration_OnNavigateUpListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.8956620Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\recyclerview\\widget\\AsyncListDiffer_ListListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\recyclerview\\widget\\AsyncListDiffer_ListListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.9054975Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\recyclerview\\widget\\RecyclerView_ItemAnimator_ItemAnimatorFinishedListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\recyclerview\\widget\\RecyclerView_ItemAnimator_ItemAnimatorFinishedListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.9150145Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\recyclerview\\widget\\RecyclerView_OnChildAttachStateChangeListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\recyclerview\\widget\\RecyclerView_OnChildAttachStateChangeListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.9245487Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\recyclerview\\widget\\RecyclerView_OnItemTouchListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\recyclerview\\widget\\RecyclerView_OnItemTouchListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.9343016Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\recyclerview\\widget\\RecyclerView_RecyclerListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\recyclerview\\widget\\RecyclerView_RecyclerListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.9445847Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\slidingpanelayout\\widget\\SlidingPaneLayout_PanelSlideListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\slidingpanelayout\\widget\\SlidingPaneLayout_PanelSlideListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.9552627Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\swiperefreshlayout\\widget\\SwipeRefreshLayout_OnRefreshListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\swiperefreshlayout\\widget\\SwipeRefreshLayout_OnRefreshListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.9665667Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\transition\\Transition_TransitionListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\transition\\Transition_TransitionListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.9778892Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\viewpager\\widget\\ViewPager_OnAdapterChangeListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\viewpager\\widget\\ViewPager_OnAdapterChangeListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:20.9879556Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\viewpager\\widget\\ViewPager_OnPageChangeListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\androidx\\viewpager\\widget\\ViewPager_OnPageChangeListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.0008030Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\bumptech\\glide\\load\\engine\\cache\\MemoryCache_ResourceRemovedListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\bumptech\\glide\\load\\engine\\cache\\MemoryCache_ResourceRemovedListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.0110646Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\bumptech\\glide\\manager\\ConnectivityMonitor_ConnectivityListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\bumptech\\glide\\manager\\ConnectivityMonitor_ConnectivityListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.0199535Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\bumptech\\glide\\manager\\LifecycleListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\bumptech\\glide\\manager\\LifecycleListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.0300158Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\bumptech\\glide\\request\\RequestListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\bumptech\\glide\\request\\RequestListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.0420862Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\google\\android\\material\\appbar\\AppBarLayout_LiftOnScrollListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\google\\android\\material\\appbar\\AppBarLayout_LiftOnScrollListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.0513086Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\google\\android\\material\\appbar\\AppBarLayout_OnOffsetChangedListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\google\\android\\material\\appbar\\AppBarLayout_OnOffsetChangedListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.0618714Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\google\\android\\material\\behavior\\SwipeDismissBehavior_OnDismissListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\google\\android\\material\\behavior\\SwipeDismissBehavior_OnDismissListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.0724588Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\google\\android\\material\\button\\MaterialButtonToggleGroup_OnButtonCheckedListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\google\\android\\material\\button\\MaterialButtonToggleGroup_OnButtonCheckedListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.0819056Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\google\\android\\material\\button\\MaterialButton_OnCheckedChangeListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\google\\android\\material\\button\\MaterialButton_OnCheckedChangeListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.0926268Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\google\\android\\material\\card\\MaterialCardView_OnCheckedChangeListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\google\\android\\material\\card\\MaterialCardView_OnCheckedChangeListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.1030514Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\google\\android\\material\\chip\\ChipGroup_OnCheckedChangeListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\google\\android\\material\\chip\\ChipGroup_OnCheckedChangeListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.1129598Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\google\\android\\material\\chip\\ChipGroup_OnCheckedStateChangeListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\google\\android\\material\\chip\\ChipGroup_OnCheckedStateChangeListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.1245125Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\google\\android\\material\\datepicker\\MaterialPickerOnPositiveButtonClickListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\google\\android\\material\\datepicker\\MaterialPickerOnPositiveButtonClickListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.1392535Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\google\\android\\material\\internal\\CheckableGroup_OnCheckedStateChangeListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\google\\android\\material\\internal\\CheckableGroup_OnCheckedStateChangeListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.1518221Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\google\\android\\material\\internal\\MaterialCheckable_OnCheckedChangeListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\google\\android\\material\\internal\\MaterialCheckable_OnCheckedChangeListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.1645168Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\google\\android\\material\\internal\\ViewUtils_OnApplyWindowInsetsListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\google\\android\\material\\internal\\ViewUtils_OnApplyWindowInsetsListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.1784958Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\google\\android\\material\\navigation\\NavigationBarView_OnItemReselectedListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\google\\android\\material\\navigation\\NavigationBarView_OnItemReselectedListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.1909581Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\google\\android\\material\\navigation\\NavigationBarView_OnItemSelectedListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\google\\android\\material\\navigation\\NavigationBarView_OnItemSelectedListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.2044596Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\google\\android\\material\\navigation\\NavigationView_OnNavigationItemSelectedListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\google\\android\\material\\navigation\\NavigationView_OnNavigationItemSelectedListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.2225507Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\google\\android\\material\\shape\\ShapeAppearancePathProvider_PathListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\google\\android\\material\\shape\\ShapeAppearancePathProvider_PathListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.2406017Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\google\\android\\material\\slider\\BaseOnChangeListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\google\\android\\material\\slider\\BaseOnChangeListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.2530891Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\google\\android\\material\\slider\\BaseOnSliderTouchListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\google\\android\\material\\slider\\BaseOnSliderTouchListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.2670195Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\google\\android\\material\\tabs\\TabLayout_BaseOnTabSelectedListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\google\\android\\material\\tabs\\TabLayout_BaseOnTabSelectedListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.2793917Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\google\\android\\material\\textfield\\TextInputLayout_OnEditTextAttachedListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\google\\android\\material\\textfield\\TextInputLayout_OnEditTextAttachedListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.2898613Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\google\\android\\material\\textfield\\TextInputLayout_OnEndIconChangedListenerImplementor.java","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android\\src\\mono\\com\\google\\android\\material\\textfield\\TextInputLayout_OnEndIconChangedListenerImplementor.java","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.3420404Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android-arm\\PlantLady.Android.assets.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android-arm\\PlantLady.Android.assets.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.3548476Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android-arm\\PlantLady.Android.csproj.AssemblyReference.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android-arm\\PlantLady.Android.csproj.AssemblyReference.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.3659139Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android-arm\\PlantLady.Android.GlobalUsings.g.cs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android-arm\\PlantLady.Android.GlobalUsings.g.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.4553982Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android-arm64\\PlantLady.Android.assets.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android-arm64\\PlantLady.Android.assets.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.4736581Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android-arm64\\PlantLady.Android.csproj.AssemblyReference.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android-arm64\\PlantLady.Android.csproj.AssemblyReference.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.4778661Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android-arm64\\PlantLady.Android.GlobalUsings.g.cs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android-arm64\\PlantLady.Android.GlobalUsings.g.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.4973874Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android-x64\\PlantLady.Android.assets.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android-x64\\PlantLady.Android.assets.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.5154642Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android-x64\\PlantLady.Android.csproj.AssemblyReference.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android-x64\\PlantLady.Android.csproj.AssemblyReference.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.5351208Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android-x64\\PlantLady.Android.GlobalUsings.g.cs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android-x64\\PlantLady.Android.GlobalUsings.g.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.5463976Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android-x86\\PlantLady.Android.assets.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android-x86\\PlantLady.Android.assets.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.5593814Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android-x86\\PlantLady.Android.csproj.AssemblyReference.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android-x86\\PlantLady.Android.csproj.AssemblyReference.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.5632793Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android-x86\\PlantLady.Android.GlobalUsings.g.cs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\android-x86\\PlantLady.Android.GlobalUsings.g.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.5958370Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\app_shared_libraries\\x86\\libxamarin-app.so","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\app_shared_libraries\\x86\\libxamarin-app.so","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.5992030Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\assets\\AboutAssets.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\assets\\AboutAssets.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.6100488Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\assets\\AmaticSC-Regular.ttf","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\assets\\AmaticSC-Regular.ttf","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.6320488Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\assets\\materialdesignicons-webfont.ttf","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\assets\\materialdesignicons-webfont.ttf","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.6465131Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\assets\\Michella-Garden.otf","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\assets\\Michella-Garden.otf","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.6586142Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\designtime\\build.props","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\designtime\\build.props","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.6688997Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\designtime\\libraryimports.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\designtime\\libraryimports.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.6837442Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\designtime\\libraryprojectimports.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\designtime\\libraryprojectimports.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.7237684Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\designtime\\Resource.designer.cs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\designtime\\Resource.designer.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.7437937Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\flat\\drawable_aloevera.jpg.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\flat\\drawable_aloevera.jpg.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.7667562Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\flat\\layout_tabbar.xml.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\flat\\layout_tabbar.xml.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.7757612Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\flat\\layout_toolbar.xml.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\flat\\layout_toolbar.xml.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.7824439Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\flat\\mipmap-anydpi-v26_icon.xml.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\flat\\mipmap-anydpi-v26_icon.xml.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.7890225Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\flat\\mipmap-anydpi-v26_icon_round.xml.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\flat\\mipmap-anydpi-v26_icon_round.xml.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.7954271Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\flat\\mipmap-hdpi_icon.png.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\flat\\mipmap-hdpi_icon.png.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.8048411Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\flat\\mipmap-hdpi_launcher_foreground.png.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\flat\\mipmap-hdpi_launcher_foreground.png.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.8152225Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\flat\\mipmap-mdpi_icon.png.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\flat\\mipmap-mdpi_icon.png.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.8260464Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\flat\\mipmap-mdpi_launcher_foreground.png.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\flat\\mipmap-mdpi_launcher_foreground.png.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.8481136Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\flat\\mipmap-xhdpi_icon.png.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\flat\\mipmap-xhdpi_icon.png.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.8639558Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\flat\\mipmap-xhdpi_launcher_foreground.png.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\flat\\mipmap-xhdpi_launcher_foreground.png.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.8794026Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\flat\\mipmap-xxhdpi_icon.png.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\flat\\mipmap-xxhdpi_icon.png.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.8963915Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\flat\\mipmap-xxhdpi_launcher_foreground.png.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\flat\\mipmap-xxhdpi_launcher_foreground.png.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.9108584Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\flat\\mipmap-xxxhdpi_icon.png.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\flat\\mipmap-xxxhdpi_icon.png.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.9239929Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\flat\\mipmap-xxxhdpi_launcher_foreground.png.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\flat\\mipmap-xxxhdpi_launcher_foreground.png.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.9348911Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\flat\\values_colors.arsc.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\flat\\values_colors.arsc.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.9464101Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\flat\\values_styles.arsc.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\flat\\values_styles.arsc.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.9659697Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\100.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\100.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.9765727Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\101.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\101.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:21.9889259Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\102.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\102.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.0014094Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\103.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\103.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.0086250Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\104.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\104.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.0162439Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\105.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\105.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.0223059Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\106.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\106.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.0283059Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\107.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\107.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.0352377Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\108.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\108.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.0416454Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\109.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\109.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.0486916Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\110.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\110.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.0554092Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\111.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\111.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.0625999Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\112.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\112.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.0687192Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\113.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\113.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.0763361Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\114.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\114.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.0826681Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\115.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\115.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.0889823Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\116.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\116.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.0966149Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\117.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\117.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.1028048Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\118.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\118.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.1103534Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\119.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\119.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.1163073Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\120.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\120.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.1222135Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\121.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\121.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.1295548Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\122.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\122.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.1374327Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\123.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\123.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.1461739Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.1539443Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\125.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\125.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.1647784Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\126.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\126.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.1709152Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.1794857Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\128.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\128.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.1874202Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\129.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\129.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.1962309Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\130.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\130.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.2036029Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\131.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\131.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.2096238Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\132.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\132.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.2159478Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\133.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\133.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.2215337Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\134.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\134.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.2274788Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\135.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\135.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.2337185Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\136.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\136.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.2414541Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\137.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\137.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.2488500Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.2554815Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\139.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\139.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.2632618Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\140.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\140.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.2699201Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\141.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\141.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.2767863Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.2841354Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\143.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\143.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.2939614Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\144.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\144.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.3018833Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\145.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\145.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.3092384Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\146.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\146.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.3164542Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\147.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\147.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.3236248Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.3324836Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\149.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\149.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.3398277Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\150.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\150.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.3471015Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\151.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\151.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.3543557Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\152.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\152.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.3636466Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\153.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\153.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.3708895Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\154.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\154.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.3784831Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.3858517Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\156.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\156.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.3927485Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\157.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\157.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.3988530Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\89.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\89.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.4050075Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\90.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\90.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.4109552Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\91.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\91.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.4180628Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\92.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\92.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.4253776Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.4327202Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\94.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\94.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.4386991Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\95.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\95.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.4469061Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\96.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\96.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.4556972Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\97.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\97.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.4654200Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\98.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\98.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.4727082Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\99.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\99.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.4837031Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\map.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\map.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.4970614Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\100\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\100\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.5530027Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\100\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\100\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.5640906Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\100\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\100\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.5647643Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\100\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\100\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.5660889Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\100\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\100\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.5749898Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\100\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\100\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.5858649Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\100\\jl\\flat\\100.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\100\\jl\\flat\\100.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.5909912Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\100\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\100\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.6007307Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\100\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\100\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.6655868Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\101\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\101\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.8608553Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\101\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\101\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.8715670Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\101\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\101\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.8840507Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\102\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\102\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.9502353Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\102\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\102\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.9625705Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\102\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\102\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.9649571Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\102\\jl\\proguard.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\102\\jl\\proguard.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.9660413Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\102\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\102\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.9671719Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\102\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\102\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.9707424Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\102\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\102\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.9734871Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\102\\jl\\flat\\102.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\102\\jl\\flat\\102.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.9782504Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\102\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\102\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.9817538Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\102\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\102\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:22.9917568Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\103\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\103\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.0055329Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\103\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\103\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.0167018Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\103\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\103\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.0175879Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\103\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\103\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.0187522Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\103\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\103\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.0205946Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\103\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\103\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.0232828Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\103\\jl\\flat\\103.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\103\\jl\\flat\\103.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.0282193Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\103\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\103\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.0310455Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\103\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\103\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.0432815Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.0544819Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\annotations.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\annotations.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.0713991Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.0827198Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.0838927Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.0851023Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.0887839Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.0920554Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\flat\\104.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\flat\\104.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.0976292Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.1012319Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\104\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.1152913Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.1292059Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\annotations.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\annotations.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.1397364Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\baseline-prof.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\baseline-prof.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.1558640Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.1678368Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.1769415Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\proguard.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\proguard.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.1778185Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.1880671Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.2038033Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.2204507Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\flat\\105.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\flat\\105.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.2285991Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.2436553Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\res\\anim\\fragment_fast_out_extra_slow_in.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\res\\anim\\fragment_fast_out_extra_slow_in.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.2595596Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\res\\anim-v21\\fragment_fast_out_extra_slow_in.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\res\\anim-v21\\fragment_fast_out_extra_slow_in.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.2800108Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\res\\animator\\fragment_close_enter.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\res\\animator\\fragment_close_enter.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.2980334Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\res\\animator\\fragment_close_exit.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\res\\animator\\fragment_close_exit.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.3123855Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\res\\animator\\fragment_fade_enter.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\res\\animator\\fragment_fade_enter.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.3268560Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\res\\animator\\fragment_fade_exit.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\res\\animator\\fragment_fade_exit.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.3420926Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\res\\animator\\fragment_open_enter.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\res\\animator\\fragment_open_enter.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.3572257Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\res\\animator\\fragment_open_exit.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\res\\animator\\fragment_open_exit.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.3742161Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\105\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.3912396Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\106\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\106\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.4047688Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\106\\jl\\annotations.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\106\\jl\\annotations.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.4342488Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\106\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\106\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.4537217Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\106\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\106\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.4692363Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\106\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\106\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.4865406Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\106\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\106\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.5009540Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\106\\jl\\flat\\106.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\106\\jl\\flat\\106.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.5144431Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\106\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\106\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.5340612Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\107\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\107\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.6986670Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\107\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\107\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.7114843Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\107\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\107\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.7289305Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\108\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\108\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.7928615Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\108\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\108\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.7940019Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\108\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\108\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.8134863Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\109\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\109\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.8261287Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\109\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\109\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.8354266Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\109\\jl\\proguard.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\109\\jl\\proguard.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.8428798Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\109\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\109\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.8526162Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\110\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\110\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.8611861Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\110\\jl\\annotations.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\110\\jl\\annotations.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.8744755Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\110\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\110\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.8836211Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\110\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\110\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.8910525Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\110\\jl\\proguard.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\110\\jl\\proguard.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.9016462Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\110\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\110\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.9098914Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\110\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\110\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.9191930Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\110\\jl\\flat\\110.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\110\\jl\\flat\\110.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.9245768Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\110\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\110\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.9342473Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\110\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\110\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.9470814Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\111\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\111\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:23.9539063Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\111\\jl\\baseline-prof.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\111\\jl\\baseline-prof.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.0114645Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\111\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\111\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.0244920Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\111\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\111\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.0267752Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\111\\jl\\proguard.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\111\\jl\\proguard.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.0280725Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\111\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\111\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.0406682Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\111\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\111\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.0533482Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\111\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\111\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.0666298Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\111\\jl\\flat\\111.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\111\\jl\\flat\\111.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.0840844Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\111\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\111\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.0989225Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\111\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\111\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.1158446Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\112\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\112\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.1257346Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\112\\jl\\annotations.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\112\\jl\\annotations.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.1735328Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\112\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\112\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.1743233Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\112\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\112\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.1856466Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\113\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\113\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.2139282Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\113\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\113\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.2300795Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\113\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\113\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.2309816Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\113\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\113\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.2325872Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\113\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\113\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.2351237Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\113\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\113\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.2386838Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\113\\jl\\flat\\113.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\113\\jl\\flat\\113.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.2457233Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\113\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\113\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.2500278Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\113\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\113\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.2661972Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\114\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\114\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.3355714Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\114\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\114\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.3471154Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\114\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\114\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.3546039Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\114\\jl\\proguard.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\114\\jl\\proguard.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.3558313Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\114\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\114\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.3568041Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\114\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\114\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.3588133Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\114\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\114\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.3613154Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\114\\jl\\flat\\114.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\114\\jl\\flat\\114.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.3662252Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\114\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\114\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.3693792Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\114\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\114\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.3795843Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\115\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\115\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.4167362Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\115\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\115\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.4173850Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\115\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\115\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.4274021Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\116\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\116\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.4479181Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\116\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\116\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.4500344Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\116\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\116\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.4613713Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\117\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\117\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.4687950Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\117\\jl\\annotations.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\117\\jl\\annotations.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.4788887Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\117\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\117\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.4900662Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\117\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\117\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.4907246Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\117\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\117\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.4917218Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\117\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\117\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.4938389Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\117\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\117\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.4963970Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\117\\jl\\flat\\117.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\117\\jl\\flat\\117.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.5079397Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\117\\jl\\libs\\repackaged.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\117\\jl\\libs\\repackaged.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.5129864Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\117\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\117\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.5164651Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\117\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\117\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.5278121Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\118\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\118\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.6617689Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\118\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\118\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.6813110Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\118\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\118\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.6824602Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\118\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\118\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.6849420Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\118\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\118\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.6885095Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\118\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\118\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.6928900Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\118\\jl\\flat\\118.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\118\\jl\\flat\\118.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.7020790Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\118\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\118\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.7074890Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\118\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\118\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.7263308Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\119\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\119\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.7516577Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\119\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\119\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.7552309Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\119\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\119\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.7736070Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\120\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\120\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.7914200Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\120\\jl\\annotations.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\120\\jl\\annotations.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.8951476Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\120\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\120\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.9090664Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\120\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\120\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.9161406Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\120\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\120\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.9270726Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\120\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\120\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.9377811Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\120\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\120\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.9531115Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\120\\jl\\flat\\120.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\120\\jl\\flat\\120.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.9647768Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\120\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\120\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:24.9780743Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\121\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\121\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.0458638Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\121\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\121\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.0465458Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\121\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\121\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.0570595Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\122\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\122\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.0662061Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\122\\jl\\annotations.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\122\\jl\\annotations.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.1724424Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\122\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\122\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.1832732Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\122\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\122\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.1919749Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\122\\jl\\proguard.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\122\\jl\\proguard.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.1985756Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\122\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\122\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.2076667Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\122\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\122\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.2162075Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\122\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\122\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.2272329Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\122\\jl\\flat\\122.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\122\\jl\\flat\\122.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.2388608Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\122\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\122\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.2501462Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\122\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\122\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.2625476Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.2773797Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.2869180Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.2876130Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.2953346Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.3043754Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.3121636Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\flat\\123.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\flat\\123.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.3173722Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.3262650Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_vector_test.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\drawable\\abc_vector_test.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.3351206Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\123\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.3399292Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.3489288Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\annotations.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\annotations.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.3637804Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.3781140Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.3863514Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\proguard.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\proguard.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.3961618Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.4087475Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.4316993Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.4640028Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\flat\\124.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\flat\\124.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.4731435Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.4942434Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\abc_fade_in.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\abc_fade_in.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.5052151Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\abc_fade_out.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\abc_fade_out.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.5153647Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\abc_grow_fade_in_from_bottom.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\abc_grow_fade_in_from_bottom.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.5341610Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\abc_popup_enter.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\abc_popup_enter.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.5438446Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\abc_popup_exit.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\abc_popup_exit.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.5524493Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\abc_shrink_fade_out_from_bottom.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\abc_shrink_fade_out_from_bottom.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.5597392Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\abc_slide_in_bottom.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\abc_slide_in_bottom.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.5676796Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\abc_slide_in_top.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\abc_slide_in_top.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.5695664Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\abc_slide_out_bottom.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\abc_slide_out_bottom.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.5769808Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\abc_slide_out_top.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\abc_slide_out_top.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.5841902Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\abc_tooltip_enter.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\abc_tooltip_enter.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.5914284Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\abc_tooltip_exit.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\abc_tooltip_exit.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.5990668Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\btn_checkbox_to_checked_box_inner_merged_animation.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\btn_checkbox_to_checked_box_inner_merged_animation.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.6063982Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\btn_checkbox_to_checked_box_outer_merged_animation.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\btn_checkbox_to_checked_box_outer_merged_animation.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.6140088Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\btn_checkbox_to_checked_icon_null_animation.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\btn_checkbox_to_checked_icon_null_animation.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.6217567Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\btn_checkbox_to_unchecked_box_inner_merged_animation.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\btn_checkbox_to_unchecked_box_inner_merged_animation.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.6296074Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\btn_checkbox_to_unchecked_check_path_merged_animation.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\btn_checkbox_to_unchecked_check_path_merged_animation.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.6374705Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\btn_checkbox_to_unchecked_icon_null_animation.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\btn_checkbox_to_unchecked_icon_null_animation.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.6453196Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\btn_radio_to_off_mtrl_dot_group_animation.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\btn_radio_to_off_mtrl_dot_group_animation.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.6534238Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\btn_radio_to_off_mtrl_ring_outer_animation.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\btn_radio_to_off_mtrl_ring_outer_animation.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.6611983Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\btn_radio_to_off_mtrl_ring_outer_path_animation.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\btn_radio_to_off_mtrl_ring_outer_path_animation.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.6691426Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\btn_radio_to_on_mtrl_dot_group_animation.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\btn_radio_to_on_mtrl_dot_group_animation.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.6772683Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\btn_radio_to_on_mtrl_ring_outer_animation.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\btn_radio_to_on_mtrl_ring_outer_animation.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.6852534Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\btn_radio_to_on_mtrl_ring_outer_path_animation.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\anim\\btn_radio_to_on_mtrl_ring_outer_path_animation.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.6938287Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color\\abc_background_cache_hint_selector_material_dark.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color\\abc_background_cache_hint_selector_material_dark.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.7009875Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color\\abc_background_cache_hint_selector_material_light.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color\\abc_background_cache_hint_selector_material_light.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.7089429Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color\\abc_btn_colored_borderless_text_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color\\abc_btn_colored_borderless_text_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.7165195Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color\\abc_btn_colored_text_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color\\abc_btn_colored_text_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.7236959Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color\\abc_hint_foreground_material_dark.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color\\abc_hint_foreground_material_dark.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.7309271Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color\\abc_hint_foreground_material_light.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color\\abc_hint_foreground_material_light.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.7385444Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color\\abc_primary_text_disable_only_material_dark.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color\\abc_primary_text_disable_only_material_dark.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.7458286Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color\\abc_primary_text_disable_only_material_light.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color\\abc_primary_text_disable_only_material_light.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.7534305Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color\\abc_primary_text_material_dark.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color\\abc_primary_text_material_dark.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.7605759Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color\\abc_primary_text_material_light.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color\\abc_primary_text_material_light.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.7682047Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color\\abc_search_url_text.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color\\abc_search_url_text.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.7754109Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color\\abc_secondary_text_material_dark.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color\\abc_secondary_text_material_dark.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.7828339Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color\\abc_secondary_text_material_light.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color\\abc_secondary_text_material_light.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.7848010Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color\\abc_tint_btn_checkable.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color\\abc_tint_btn_checkable.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.7927512Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color\\abc_tint_default.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color\\abc_tint_default.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.8003315Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color\\abc_tint_edittext.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color\\abc_tint_edittext.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.8081268Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color\\abc_tint_seek_thumb.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color\\abc_tint_seek_thumb.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.8161617Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color\\abc_tint_spinner.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color\\abc_tint_spinner.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.8247565Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color\\abc_tint_switch_track.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color\\abc_tint_switch_track.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.8336842Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color\\switch_thumb_material_dark.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color\\switch_thumb_material_dark.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.8431124Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color\\switch_thumb_material_light.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color\\switch_thumb_material_light.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.8525918Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color-v21\\abc_btn_colored_borderless_text_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color-v21\\abc_btn_colored_borderless_text_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.8630030Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color-v23\\abc_btn_colored_borderless_text_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color-v23\\abc_btn_colored_borderless_text_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.8718243Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color-v23\\abc_btn_colored_text_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color-v23\\abc_btn_colored_text_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.8817814Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color-v23\\abc_color_highlight_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color-v23\\abc_color_highlight_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.8941363Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color-v23\\abc_tint_btn_checkable.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color-v23\\abc_tint_btn_checkable.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.9087453Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color-v23\\abc_tint_default.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color-v23\\abc_tint_default.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.9228207Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color-v23\\abc_tint_edittext.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color-v23\\abc_tint_edittext.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.9399543Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color-v23\\abc_tint_seek_thumb.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color-v23\\abc_tint_seek_thumb.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.9436323Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color-v23\\abc_tint_spinner.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color-v23\\abc_tint_spinner.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.9579568Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color-v23\\abc_tint_switch_track.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\color-v23\\abc_tint_switch_track.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.9748801Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_btn_borderless_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_btn_borderless_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.9852796Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_btn_check_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_btn_check_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:25.9948757Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_btn_check_material_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_btn_check_material_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.0029041Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_btn_colored_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_btn_colored_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.0119776Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_btn_default_mtrl_shape.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_btn_default_mtrl_shape.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.0212612Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_btn_radio_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_btn_radio_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.0317604Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_btn_radio_material_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_btn_radio_material_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.0412276Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_cab_background_internal_bg.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_cab_background_internal_bg.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.0510572Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_cab_background_top_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_cab_background_top_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.0611206Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_dialog_material_background.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_dialog_material_background.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.0714005Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_edit_text_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_edit_text_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.0813697Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_ic_ab_back_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_ic_ab_back_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.0935438Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_ic_arrow_drop_right_black_24dp.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_ic_arrow_drop_right_black_24dp.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.1065509Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_ic_clear_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_ic_clear_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.1205956Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_ic_go_search_api_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_ic_go_search_api_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.1332816Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_ic_menu_copy_mtrl_am_alpha.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_ic_menu_copy_mtrl_am_alpha.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.1469151Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_ic_menu_cut_mtrl_alpha.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_ic_menu_cut_mtrl_alpha.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.1618700Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_ic_menu_overflow_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_ic_menu_overflow_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.1754490Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_ic_menu_paste_mtrl_am_alpha.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_ic_menu_paste_mtrl_am_alpha.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.1866326Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_ic_menu_selectall_mtrl_alpha.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_ic_menu_selectall_mtrl_alpha.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.1959177Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_ic_menu_share_mtrl_alpha.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_ic_menu_share_mtrl_alpha.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.2086813Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_ic_search_api_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_ic_search_api_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.2241900Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_ic_voice_search_api_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_ic_voice_search_api_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.2410426Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_item_background_holo_dark.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_item_background_holo_dark.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.2553084Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_item_background_holo_light.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_item_background_holo_light.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.2708760Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_list_divider_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_list_divider_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.2872098Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_list_selector_background_transition_holo_dark.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_list_selector_background_transition_holo_dark.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.2995200Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_list_selector_background_transition_holo_light.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_list_selector_background_transition_holo_light.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.3023477Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_list_selector_holo_dark.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_list_selector_holo_dark.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.3046908Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_list_selector_holo_light.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_list_selector_holo_light.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.3145065Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_ratingbar_indicator_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_ratingbar_indicator_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.3166800Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_ratingbar_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_ratingbar_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.3193147Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_ratingbar_small_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_ratingbar_small_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.3286680Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_seekbar_thumb_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_seekbar_thumb_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.3371278Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_seekbar_tick_mark_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_seekbar_tick_mark_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.3460243Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_seekbar_track_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_seekbar_track_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.3560513Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_spinner_textfield_background_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_spinner_textfield_background_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.3642989Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_star_black_48dp.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_star_black_48dp.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.3726307Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_star_half_black_48dp.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_star_half_black_48dp.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.3815866Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_switch_thumb_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_switch_thumb_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.3934497Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_tab_indicator_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_tab_indicator_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.4067144Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_textfield_search_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_textfield_search_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.4231950Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_text_cursor_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\abc_text_cursor_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.4408884Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\btn_checkbox_checked_mtrl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\btn_checkbox_checked_mtrl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.4616957Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\btn_checkbox_checked_to_unchecked_mtrl_animation.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\btn_checkbox_checked_to_unchecked_mtrl_animation.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.4794905Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\btn_checkbox_unchecked_mtrl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\btn_checkbox_unchecked_mtrl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.4963101Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\btn_checkbox_unchecked_to_checked_mtrl_animation.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\btn_checkbox_unchecked_to_checked_mtrl_animation.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.5113293Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\btn_radio_off_mtrl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\btn_radio_off_mtrl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.5250054Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\btn_radio_off_to_on_mtrl_animation.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\btn_radio_off_to_on_mtrl_animation.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.5377555Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\btn_radio_on_mtrl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\btn_radio_on_mtrl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.5504887Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\btn_radio_on_to_off_mtrl_animation.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\btn_radio_on_to_off_mtrl_animation.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.5661332Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\test_level_drawable.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\test_level_drawable.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.5784794Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\tooltip_frame_dark.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\tooltip_frame_dark.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.5890606Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\tooltip_frame_light.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable\\tooltip_frame_light.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.5983096Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.6054629Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_btn_check_to_on_mtrl_000.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_btn_check_to_on_mtrl_000.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.6128064Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_btn_check_to_on_mtrl_015.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_btn_check_to_on_mtrl_015.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.6213381Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_btn_radio_to_on_mtrl_000.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_btn_radio_to_on_mtrl_000.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.6299875Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_btn_radio_to_on_mtrl_015.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_btn_radio_to_on_mtrl_015.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.6389241Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.6477001Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.6573148Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_cab_background_top_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_cab_background_top_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.6676963Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_ic_commit_search_api_mtrl_alpha.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_ic_commit_search_api_mtrl_alpha.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.6787466Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_list_divider_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_list_divider_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.6881449Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_list_focused_holo.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_list_focused_holo.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.6986081Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_list_longpressed_holo.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_list_longpressed_holo.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.7083950Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_list_pressed_holo_dark.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_list_pressed_holo_dark.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.7194219Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_list_pressed_holo_light.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_list_pressed_holo_light.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.7304244Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_list_selector_disabled_holo_dark.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_list_selector_disabled_holo_dark.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.7413328Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_list_selector_disabled_holo_light.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_list_selector_disabled_holo_light.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.7518148Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.7641852Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_popup_background_mtrl_mult.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_popup_background_mtrl_mult.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.7761199Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.7865747Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.7976065Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.8084717Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.8188385Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.8291822Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_spinner_mtrl_am_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_spinner_mtrl_am_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.8399881Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_switch_track_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_switch_track_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.8508334Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.8611272Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_textfield_activated_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_textfield_activated_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.8698023Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_textfield_default_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_textfield_default_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.8771056Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.8841419Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.8900420Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_text_select_handle_left_mtrl.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_text_select_handle_left_mtrl.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.8961036Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_text_select_handle_middle_mtrl.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_text_select_handle_middle_mtrl.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.9018182Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_text_select_handle_right_mtrl.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-hdpi-v4\\abc_text_select_handle_right_mtrl.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.9078139Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-ldrtl-hdpi-v17\\abc_spinner_mtrl_am_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-ldrtl-hdpi-v17\\abc_spinner_mtrl_am_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.9152437Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-ldrtl-mdpi-v17\\abc_spinner_mtrl_am_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-ldrtl-mdpi-v17\\abc_spinner_mtrl_am_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.9214881Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-ldrtl-xhdpi-v17\\abc_spinner_mtrl_am_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-ldrtl-xhdpi-v17\\abc_spinner_mtrl_am_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.9280132Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-ldrtl-xxhdpi-v17\\abc_spinner_mtrl_am_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-ldrtl-xxhdpi-v17\\abc_spinner_mtrl_am_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.9342783Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-ldrtl-xxxhdpi-v17\\abc_spinner_mtrl_am_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-ldrtl-xxxhdpi-v17\\abc_spinner_mtrl_am_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.9417021Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.9474427Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_btn_check_to_on_mtrl_000.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_btn_check_to_on_mtrl_000.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.9530645Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_btn_check_to_on_mtrl_015.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_btn_check_to_on_mtrl_015.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.9588038Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_btn_radio_to_on_mtrl_000.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_btn_radio_to_on_mtrl_000.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.9647044Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_btn_radio_to_on_mtrl_015.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_btn_radio_to_on_mtrl_015.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.9668891Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.9738129Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.9794033Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_cab_background_top_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_cab_background_top_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.9849587Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_ic_commit_search_api_mtrl_alpha.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_ic_commit_search_api_mtrl_alpha.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.9865975Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_list_divider_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_list_divider_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.9926856Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_list_focused_holo.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_list_focused_holo.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:26.9981016Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_list_longpressed_holo.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_list_longpressed_holo.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.0036691Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_list_pressed_holo_dark.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_list_pressed_holo_dark.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.0094156Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_list_pressed_holo_light.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_list_pressed_holo_light.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.0146716Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_list_selector_disabled_holo_dark.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_list_selector_disabled_holo_dark.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.0201145Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_list_selector_disabled_holo_light.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_list_selector_disabled_holo_light.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.0259414Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.0319586Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_popup_background_mtrl_mult.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_popup_background_mtrl_mult.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.0377197Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.0432926Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.0490163Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.0551414Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.0612067Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.0676451Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_spinner_mtrl_am_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_spinner_mtrl_am_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.0738021Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_switch_track_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_switch_track_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.0798281Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.0857919Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_textfield_activated_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_textfield_activated_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.0914999Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_textfield_default_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_textfield_default_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.0974829Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.1035729Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.1097457Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_text_select_handle_left_mtrl.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_text_select_handle_left_mtrl.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.1121343Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_text_select_handle_middle_mtrl.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_text_select_handle_middle_mtrl.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.1187295Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_text_select_handle_right_mtrl.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-mdpi-v4\\abc_text_select_handle_right_mtrl.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.1294761Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-v21\\abc_action_bar_item_background_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-v21\\abc_action_bar_item_background_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.1411791Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-v21\\abc_btn_colored_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-v21\\abc_btn_colored_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.1522247Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-v21\\abc_dialog_material_background.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-v21\\abc_dialog_material_background.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.1552863Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-v21\\abc_edit_text_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-v21\\abc_edit_text_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.1658055Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-v21\\abc_list_divider_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-v21\\abc_list_divider_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.1767690Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-v23\\abc_control_background_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-v23\\abc_control_background_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.1877462Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-watch-v20\\abc_dialog_material_background.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-watch-v20\\abc_dialog_material_background.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.1985972Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.2064981Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_btn_check_to_on_mtrl_000.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_btn_check_to_on_mtrl_000.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.2091610Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_btn_check_to_on_mtrl_015.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_btn_check_to_on_mtrl_015.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.2168804Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_btn_radio_to_on_mtrl_000.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_btn_radio_to_on_mtrl_000.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.2239775Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_btn_radio_to_on_mtrl_015.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_btn_radio_to_on_mtrl_015.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.2320268Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.2386362Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.2450981Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_cab_background_top_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_cab_background_top_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.2515717Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_ic_commit_search_api_mtrl_alpha.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_ic_commit_search_api_mtrl_alpha.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.2538767Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_list_divider_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_list_divider_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.2601130Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_list_focused_holo.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_list_focused_holo.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.2660419Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_list_longpressed_holo.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_list_longpressed_holo.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.2724434Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_list_pressed_holo_dark.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_list_pressed_holo_dark.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.2746472Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_list_pressed_holo_light.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_list_pressed_holo_light.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.2765732Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_list_selector_disabled_holo_dark.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_list_selector_disabled_holo_dark.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.2788081Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_list_selector_disabled_holo_light.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_list_selector_disabled_holo_light.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.2861430Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.2956219Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_popup_background_mtrl_mult.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_popup_background_mtrl_mult.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.3037277Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.3106716Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.3129136Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.3205912Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.3275243Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.3352850Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_spinner_mtrl_am_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_spinner_mtrl_am_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.3426705Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_switch_track_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_switch_track_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.3504111Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.3580674Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_textfield_activated_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_textfield_activated_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.3652304Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_textfield_default_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_textfield_default_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.3729133Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.3805259Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.3878919Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_text_select_handle_left_mtrl.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_text_select_handle_left_mtrl.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.3960050Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_text_select_handle_middle_mtrl.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_text_select_handle_middle_mtrl.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.4024544Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_text_select_handle_right_mtrl.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xhdpi-v4\\abc_text_select_handle_right_mtrl.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.4064548Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.4123652Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_btn_check_to_on_mtrl_000.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_btn_check_to_on_mtrl_000.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.4186696Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_btn_check_to_on_mtrl_015.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_btn_check_to_on_mtrl_015.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.4244524Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_btn_radio_to_on_mtrl_000.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_btn_radio_to_on_mtrl_000.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.4303108Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_btn_radio_to_on_mtrl_015.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_btn_radio_to_on_mtrl_015.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.4365290Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.4428507Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.4486220Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_cab_background_top_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_cab_background_top_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.4540441Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_ic_commit_search_api_mtrl_alpha.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_ic_commit_search_api_mtrl_alpha.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.4613588Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_list_divider_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_list_divider_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.4691069Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_list_focused_holo.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_list_focused_holo.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.4764836Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_list_longpressed_holo.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_list_longpressed_holo.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.4786844Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_list_pressed_holo_dark.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_list_pressed_holo_dark.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.4883614Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_list_pressed_holo_light.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_list_pressed_holo_light.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.4995070Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_list_selector_disabled_holo_dark.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_list_selector_disabled_holo_dark.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.5119399Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_list_selector_disabled_holo_light.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_list_selector_disabled_holo_light.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.5232536Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.5342151Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_popup_background_mtrl_mult.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_popup_background_mtrl_mult.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.5448817Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.5481637Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.5596202Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.5706306Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.5812923Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.5849549Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_spinner_mtrl_am_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_spinner_mtrl_am_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.5958725Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_switch_track_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_switch_track_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.6065920Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.6178319Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_textfield_activated_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_textfield_activated_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.6284679Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_textfield_default_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_textfield_default_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.6393017Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.6500431Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.6536497Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_text_select_handle_left_mtrl.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_text_select_handle_left_mtrl.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.6656867Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_text_select_handle_middle_mtrl.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_text_select_handle_middle_mtrl.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.6761591Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_text_select_handle_right_mtrl.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxhdpi-v4\\abc_text_select_handle_right_mtrl.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.6885042Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxxhdpi-v4\\abc_btn_check_to_on_mtrl_000.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxxhdpi-v4\\abc_btn_check_to_on_mtrl_000.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.6980936Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxxhdpi-v4\\abc_btn_check_to_on_mtrl_015.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxxhdpi-v4\\abc_btn_check_to_on_mtrl_015.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.7090363Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxxhdpi-v4\\abc_btn_radio_to_on_mtrl_000.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxxhdpi-v4\\abc_btn_radio_to_on_mtrl_000.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.7188786Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxxhdpi-v4\\abc_btn_radio_to_on_mtrl_015.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxxhdpi-v4\\abc_btn_radio_to_on_mtrl_015.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.7295903Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxxhdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxxhdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.7408854Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxxhdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxxhdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.7506901Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.7541725Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.7647326Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxxhdpi-v4\\abc_spinner_mtrl_am_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxxhdpi-v4\\abc_spinner_mtrl_am_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.7752607Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxxhdpi-v4\\abc_switch_track_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxxhdpi-v4\\abc_switch_track_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.7857840Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxxhdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxxhdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.7962694Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxxhdpi-v4\\abc_text_select_handle_left_mtrl.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxxhdpi-v4\\abc_text_select_handle_left_mtrl.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.8069076Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxxhdpi-v4\\abc_text_select_handle_right_mtrl.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\drawable-xxxhdpi-v4\\abc_text_select_handle_right_mtrl.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.8223132Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\interpolator\\btn_checkbox_checked_mtrl_animation_interpolator_0.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\interpolator\\btn_checkbox_checked_mtrl_animation_interpolator_0.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.8358104Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\interpolator\\btn_checkbox_checked_mtrl_animation_interpolator_1.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\interpolator\\btn_checkbox_checked_mtrl_animation_interpolator_1.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.8398394Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\interpolator\\btn_checkbox_unchecked_mtrl_animation_interpolator_0.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\interpolator\\btn_checkbox_unchecked_mtrl_animation_interpolator_0.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.8436792Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\interpolator\\btn_checkbox_unchecked_mtrl_animation_interpolator_1.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\interpolator\\btn_checkbox_unchecked_mtrl_animation_interpolator_1.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.8562107Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\interpolator\\btn_radio_to_off_mtrl_animation_interpolator_0.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\interpolator\\btn_radio_to_off_mtrl_animation_interpolator_0.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.8592173Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\interpolator\\btn_radio_to_on_mtrl_animation_interpolator_0.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\interpolator\\btn_radio_to_on_mtrl_animation_interpolator_0.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.8689248Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\interpolator\\fast_out_slow_in.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\interpolator\\fast_out_slow_in.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.8794975Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_action_bar_title_item.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_action_bar_title_item.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.8868563Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_action_bar_up_container.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_action_bar_up_container.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.8950824Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_action_menu_item_layout.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_action_menu_item_layout.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.9026200Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_action_menu_layout.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_action_menu_layout.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.9046232Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_action_mode_bar.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_action_mode_bar.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.9124379Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_action_mode_close_item_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_action_mode_close_item_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.9202366Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_activity_chooser_view.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_activity_chooser_view.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.9281446Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_activity_chooser_view_list_item.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_activity_chooser_view_list_item.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.9358718Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_alert_dialog_button_bar_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_alert_dialog_button_bar_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.9436955Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_alert_dialog_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_alert_dialog_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.9522283Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_alert_dialog_title_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_alert_dialog_title_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.9614225Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_cascading_menu_item_layout.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_cascading_menu_item_layout.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.9696677Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_dialog_title_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_dialog_title_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.9780001Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_expanded_menu_layout.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_expanded_menu_layout.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.9801986Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_list_menu_item_checkbox.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_list_menu_item_checkbox.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.9891617Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_list_menu_item_icon.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_list_menu_item_icon.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:27.9967814Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_list_menu_item_layout.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_list_menu_item_layout.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.0076055Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_list_menu_item_radio.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_list_menu_item_radio.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.0157297Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_popup_menu_header_item_layout.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_popup_menu_header_item_layout.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.0235322Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_popup_menu_item_layout.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_popup_menu_item_layout.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.0310372Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_screen_content_include.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_screen_content_include.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.0387517Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_screen_simple.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_screen_simple.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.0465102Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_screen_simple_overlay_action_mode.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_screen_simple_overlay_action_mode.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.0552247Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_screen_toolbar.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_screen_toolbar.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.0627911Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_search_dropdown_item_icons_2line.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_search_dropdown_item_icons_2line.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.0701841Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_search_view.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_search_view.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.0781899Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_select_dialog_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_select_dialog_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.0860077Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_tooltip.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\abc_tooltip.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.0936414Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\select_dialog_item_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\select_dialog_item_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.1020875Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\select_dialog_multichoice_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\select_dialog_multichoice_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.1104533Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\select_dialog_singlechoice_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\select_dialog_singlechoice_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.1190155Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\support_simple_spinner_dropdown_item.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout\\support_simple_spinner_dropdown_item.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.1294027Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout-v26\\abc_screen_toolbar.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout-v26\\abc_screen_toolbar.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.1390969Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout-watch-v20\\abc_alert_dialog_button_bar_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout-watch-v20\\abc_alert_dialog_button_bar_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.1475530Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout-watch-v20\\abc_alert_dialog_title_material.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\layout-watch-v20\\abc_alert_dialog_title_material.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.1606509Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.1724445Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-af\\values-af.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-af\\values-af.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.1843032Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-am\\values-am.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-am\\values-am.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.1964364Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-ar\\values-ar.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-ar\\values-ar.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.2087432Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-as\\values-as.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-as\\values-as.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.2213170Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-az\\values-az.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-az\\values-az.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.2338422Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-b+sr+Latn\\values-b+sr+Latn.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-b+sr+Latn\\values-b+sr+Latn.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.2464684Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-be\\values-be.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-be\\values-be.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.2610631Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-bg\\values-bg.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-bg\\values-bg.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.2766691Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-bn\\values-bn.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-bn\\values-bn.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.2925912Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-bs\\values-bs.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-bs\\values-bs.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.3085894Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-ca\\values-ca.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-ca\\values-ca.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.3246678Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-cs\\values-cs.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-cs\\values-cs.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.3406778Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-da\\values-da.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-da\\values-da.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.3566942Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-de\\values-de.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-de\\values-de.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.3717529Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-el\\values-el.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-el\\values-el.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.3834996Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-en-rAU\\values-en-rAU.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-en-rAU\\values-en-rAU.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.3866379Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-en-rCA\\values-en-rCA.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-en-rCA\\values-en-rCA.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.3897865Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-en-rGB\\values-en-rGB.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-en-rGB\\values-en-rGB.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.3928195Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-en-rIN\\values-en-rIN.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-en-rIN\\values-en-rIN.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.4019477Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-en-rXC\\values-en-rXC.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-en-rXC\\values-en-rXC.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.4049123Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-es\\values-es.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-es\\values-es.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.4156283Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-es-rUS\\values-es-rUS.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-es-rUS\\values-es-rUS.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.4264993Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-et\\values-et.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-et\\values-et.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.4366036Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-eu\\values-eu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-eu\\values-eu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.4464890Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-fa\\values-fa.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-fa\\values-fa.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.4497832Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-fi\\values-fi.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-fi\\values-fi.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.4591789Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-fr\\values-fr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-fr\\values-fr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.4692599Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-fr-rCA\\values-fr-rCA.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-fr-rCA\\values-fr-rCA.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.4787174Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-gl\\values-gl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-gl\\values-gl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.4887006Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-gu\\values-gu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-gu\\values-gu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.4972408Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-h720dp-v13\\values-h720dp-v13.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-h720dp-v13\\values-h720dp-v13.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.5061252Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-hdpi-v4\\values-hdpi-v4.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-hdpi-v4\\values-hdpi-v4.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.5205847Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-hi\\values-hi.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-hi\\values-hi.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.5362409Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-hr\\values-hr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-hr\\values-hr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.5510915Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-hu\\values-hu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-hu\\values-hu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.5664689Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-hy\\values-hy.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-hy\\values-hy.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.5814683Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-in\\values-in.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-in\\values-in.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.5973598Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-is\\values-is.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-is\\values-is.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.6095494Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-it\\values-it.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-it\\values-it.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.6197080Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-iw\\values-iw.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-iw\\values-iw.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.6287725Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-ja\\values-ja.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-ja\\values-ja.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.6379170Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-ka\\values-ka.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-ka\\values-ka.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.6465122Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-kk\\values-kk.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-kk\\values-kk.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.6557658Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-km\\values-km.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-km\\values-km.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.6653822Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-kn\\values-kn.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-kn\\values-kn.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.6682813Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-ko\\values-ko.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-ko\\values-ko.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.6776443Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-ky\\values-ky.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-ky\\values-ky.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.6853880Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-land\\values-land.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-land\\values-land.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.6934562Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-large-v4\\values-large-v4.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-large-v4\\values-large-v4.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.7009882Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-ldltr-v21\\values-ldltr-v21.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-ldltr-v21\\values-ldltr-v21.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.7106830Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-lo\\values-lo.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-lo\\values-lo.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.7211229Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-lt\\values-lt.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-lt\\values-lt.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.7308530Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-lv\\values-lv.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-lv\\values-lv.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.7433411Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-mk\\values-mk.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-mk\\values-mk.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.7538918Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-ml\\values-ml.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-ml\\values-ml.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.7644228Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-mn\\values-mn.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-mn\\values-mn.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.7760202Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-mr\\values-mr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-mr\\values-mr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.7882137Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-ms\\values-ms.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-ms\\values-ms.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.8031699Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-my\\values-my.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-my\\values-my.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.8199920Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-nb\\values-nb.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-nb\\values-nb.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.8363962Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-ne\\values-ne.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-ne\\values-ne.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.8510371Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-night-v8\\values-night-v8.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-night-v8\\values-night-v8.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.8670650Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-nl\\values-nl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-nl\\values-nl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.8839739Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-or\\values-or.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-or\\values-or.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.9000584Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-pa\\values-pa.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-pa\\values-pa.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.9210893Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-pl\\values-pl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-pl\\values-pl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.9353869Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-port\\values-port.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-port\\values-port.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.9521951Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-pt\\values-pt.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-pt\\values-pt.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.9566389Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-pt-rBR\\values-pt-rBR.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-pt-rBR\\values-pt-rBR.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.9732443Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-pt-rPT\\values-pt-rPT.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-pt-rPT\\values-pt-rPT.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:28.9909031Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-ro\\values-ro.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-ro\\values-ro.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.0086286Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-ru\\values-ru.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-ru\\values-ru.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.0240596Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-si\\values-si.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-si\\values-si.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.0335328Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-sk\\values-sk.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-sk\\values-sk.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.0418855Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-sl\\values-sl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-sl\\values-sl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.0521253Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-sq\\values-sq.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-sq\\values-sq.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.0607211Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-sr\\values-sr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-sr\\values-sr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.0640111Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-sv\\values-sv.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-sv\\values-sv.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.0725029Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-sw\\values-sw.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-sw\\values-sw.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.0805854Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-sw600dp-v13\\values-sw600dp-v13.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-sw600dp-v13\\values-sw600dp-v13.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.0892828Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-ta\\values-ta.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-ta\\values-ta.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.0986067Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-te\\values-te.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-te\\values-te.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.1071169Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-th\\values-th.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-th\\values-th.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.1103413Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-tl\\values-tl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-tl\\values-tl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.1189583Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-tr\\values-tr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-tr\\values-tr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.1286592Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-uk\\values-uk.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-uk\\values-uk.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.1393232Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-ur\\values-ur.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-ur\\values-ur.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.1505629Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-uz\\values-uz.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-uz\\values-uz.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.1576617Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-v16\\values-v16.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-v16\\values-v16.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.1659530Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-v17\\values-v17.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-v17\\values-v17.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.1729753Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-v18\\values-v18.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-v18\\values-v18.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.1813484Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-v21\\values-v21.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-v21\\values-v21.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.1902693Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-v22\\values-v22.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-v22\\values-v22.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.1986966Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-v23\\values-v23.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-v23\\values-v23.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.2054865Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-v24\\values-v24.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-v24\\values-v24.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.2126934Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-v25\\values-v25.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-v25\\values-v25.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.2209802Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-v26\\values-v26.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-v26\\values-v26.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.2284700Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-v28\\values-v28.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-v28\\values-v28.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.2369071Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-vi\\values-vi.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-vi\\values-vi.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.2443467Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-watch-v20\\values-watch-v20.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-watch-v20\\values-watch-v20.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.2516343Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-watch-v21\\values-watch-v21.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-watch-v21\\values-watch-v21.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.2588044Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-xlarge-v4\\values-xlarge-v4.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-xlarge-v4\\values-xlarge-v4.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.2613693Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-zh-rCN\\values-zh-rCN.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-zh-rCN\\values-zh-rCN.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.2703213Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-zh-rHK\\values-zh-rHK.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-zh-rHK\\values-zh-rHK.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.2785975Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-zh-rTW\\values-zh-rTW.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-zh-rTW\\values-zh-rTW.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.2877718Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-zu\\values-zu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\124\\jl\\res\\values-zu\\values-zu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.2958508Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\125\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\125\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.3071508Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\125\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\125\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.3183896Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\125\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\125\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.3297492Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\125\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\125\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.3415321Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\125\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\125\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.3551305Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\125\\jl\\flat\\125.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\125\\jl\\flat\\125.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.3683325Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\125\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\125\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.3811559Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\125\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\125\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.3922752Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.4741770Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.4861812Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.4966400Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.5070257Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.5151258Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\flat\\126.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\flat\\126.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.5243671Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.5333300Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-v23\\values-v23.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\126\\jl\\res\\values-v23\\values-v23.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.5434489Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.5511697Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\annotations.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\annotations.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.5665271Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.5784135Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.5855599Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\proguard.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\proguard.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.5934627Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.6064847Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.6250265Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.6534099Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\flat\\127.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\flat\\127.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.6661055Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\anim\\design_bottom_sheet_slide_in.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\anim\\design_bottom_sheet_slide_in.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.6747145Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\anim\\design_bottom_sheet_slide_out.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\anim\\design_bottom_sheet_slide_out.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.6847674Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\anim\\design_snackbar_in.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\anim\\design_snackbar_in.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.6872282Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\anim\\design_snackbar_out.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\anim\\design_snackbar_out.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.6982024Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\anim\\mtrl_bottom_sheet_slide_in.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\anim\\mtrl_bottom_sheet_slide_in.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.7092693Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\anim\\mtrl_bottom_sheet_slide_out.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\anim\\mtrl_bottom_sheet_slide_out.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.7209144Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\anim\\mtrl_card_lowers_interpolator.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\anim\\mtrl_card_lowers_interpolator.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.7357868Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\anim-v21\\design_bottom_sheet_slide_in.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\anim-v21\\design_bottom_sheet_slide_in.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.7498394Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\anim-v21\\design_bottom_sheet_slide_out.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\anim-v21\\design_bottom_sheet_slide_out.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.7638735Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\anim-v21\\mtrl_bottom_sheet_slide_in.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\anim-v21\\mtrl_bottom_sheet_slide_in.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.7779257Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\anim-v21\\mtrl_bottom_sheet_slide_out.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\anim-v21\\mtrl_bottom_sheet_slide_out.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.7945786Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\design_fab_hide_motion_spec.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\design_fab_hide_motion_spec.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.8092796Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\design_fab_show_motion_spec.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\design_fab_show_motion_spec.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.8229886Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\linear_indeterminate_line1_head_interpolator.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\linear_indeterminate_line1_head_interpolator.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.8366104Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\linear_indeterminate_line1_tail_interpolator.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\linear_indeterminate_line1_tail_interpolator.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.8402624Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\linear_indeterminate_line2_head_interpolator.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\linear_indeterminate_line2_head_interpolator.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.8537644Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\linear_indeterminate_line2_tail_interpolator.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\linear_indeterminate_line2_tail_interpolator.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.8678396Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\m3_btn_elevated_btn_state_list_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\m3_btn_elevated_btn_state_list_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.8823074Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\m3_btn_state_list_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\m3_btn_state_list_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.8972850Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\m3_card_elevated_state_list_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\m3_card_elevated_state_list_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.9116788Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\m3_card_state_list_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\m3_card_state_list_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.9257587Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\m3_chip_state_list_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\m3_chip_state_list_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.9407296Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\m3_elevated_chip_state_list_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\m3_elevated_chip_state_list_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.9558189Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\mtrl_btn_state_list_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\mtrl_btn_state_list_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.9693116Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\mtrl_btn_unelevated_state_list_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\mtrl_btn_unelevated_state_list_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:29.9837822Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\mtrl_card_state_list_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\mtrl_card_state_list_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.0000524Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\mtrl_chip_state_list_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\mtrl_chip_state_list_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.0153538Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\mtrl_extended_fab_change_size_collapse_motion_spec.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\mtrl_extended_fab_change_size_collapse_motion_spec.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.0300837Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\mtrl_extended_fab_change_size_expand_motion_spec.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\mtrl_extended_fab_change_size_expand_motion_spec.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.0434075Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\mtrl_extended_fab_hide_motion_spec.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\mtrl_extended_fab_hide_motion_spec.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.0582263Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\mtrl_extended_fab_show_motion_spec.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\mtrl_extended_fab_show_motion_spec.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.0729957Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\mtrl_extended_fab_state_list_animator.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\mtrl_extended_fab_state_list_animator.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.0849260Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\mtrl_fab_hide_motion_spec.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\mtrl_fab_hide_motion_spec.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.0980742Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\mtrl_fab_show_motion_spec.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\mtrl_fab_show_motion_spec.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.1128522Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\mtrl_fab_transformation_sheet_collapse_spec.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\mtrl_fab_transformation_sheet_collapse_spec.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.1269671Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\mtrl_fab_transformation_sheet_expand_spec.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator\\mtrl_fab_transformation_sheet_expand_spec.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.1425193Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator-v21\\design_appbar_state_list_animator.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\animator-v21\\design_appbar_state_list_animator.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.1633410Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\checkbox_themeable_attribute_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\checkbox_themeable_attribute_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.1770103Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\design_box_stroke_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\design_box_stroke_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.1907870Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\design_error.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\design_error.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.2049864Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\design_icon_tint.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\design_icon_tint.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.2187352Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_appbar_overlay_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_appbar_overlay_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.2323275Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_assist_chip_icon_tint_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_assist_chip_icon_tint_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.2465989Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_assist_chip_stroke_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_assist_chip_stroke_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.2603093Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_button_background_color_selector.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_button_background_color_selector.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.2738865Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_button_foreground_color_selector.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_button_foreground_color_selector.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.2880922Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_button_outline_color_selector.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_button_outline_color_selector.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.3018588Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_button_ripple_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_button_ripple_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.3162903Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_button_ripple_color_selector.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_button_ripple_color_selector.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.3293675Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_calendar_item_disabled_text.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_calendar_item_disabled_text.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.3428738Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_calendar_item_stroke_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_calendar_item_stroke_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.3563891Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_card_foreground_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_card_foreground_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.3607438Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_card_ripple_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_card_ripple_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.3726264Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_card_stroke_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_card_stroke_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.3817711Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_chip_assist_text_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_chip_assist_text_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.3897222Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_chip_background_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_chip_background_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.3977742Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_chip_ripple_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_chip_ripple_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.4055547Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_chip_stroke_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_chip_stroke_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.4130923Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_chip_text_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_chip_text_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.4203482Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_dark_default_color_primary_text.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_dark_default_color_primary_text.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.4280515Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_dark_default_color_secondary_text.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_dark_default_color_secondary_text.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.4354579Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_dark_highlighted_text.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_dark_highlighted_text.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.4428570Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_dark_hint_foreground.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_dark_hint_foreground.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.4501936Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_dark_primary_text_disable_only.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_dark_primary_text_disable_only.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.4585206Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_default_color_primary_text.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_default_color_primary_text.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.4678764Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_default_color_secondary_text.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_default_color_secondary_text.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.4770538Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_elevated_chip_background_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_elevated_chip_background_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.4861583Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_highlighted_text.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_highlighted_text.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.4957524Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_hint_foreground.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_hint_foreground.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.5051802Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_navigation_bar_item_with_indicator_icon_tint.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_navigation_bar_item_with_indicator_icon_tint.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.5143127Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_navigation_bar_item_with_indicator_label_tint.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_navigation_bar_item_with_indicator_label_tint.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.5236436Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_navigation_bar_ripple_color_selector.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_navigation_bar_ripple_color_selector.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.5334338Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_navigation_item_background_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_navigation_item_background_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.5460110Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_navigation_item_icon_tint.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_navigation_item_icon_tint.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.5657135Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_navigation_item_ripple_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_navigation_item_ripple_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.5692072Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_navigation_item_text_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_navigation_item_text_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.5826756Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_popupmenu_overlay_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_popupmenu_overlay_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.5968791Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_primary_text_disable_only.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_primary_text_disable_only.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.6121611Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_radiobutton_ripple_tint.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_radiobutton_ripple_tint.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.6261361Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_selection_control_button_tint.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_selection_control_button_tint.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.6369381Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_selection_control_ripple_color_selector.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_selection_control_ripple_color_selector.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.6458406Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_slider_active_track_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_slider_active_track_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.6554082Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_slider_halo_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_slider_halo_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.6674848Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_slider_inactive_track_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_slider_inactive_track_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.6811996Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_slider_thumb_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_slider_thumb_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.6951178Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_switch_thumb_tint.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_switch_thumb_tint.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.7085964Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_switch_track_tint.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_switch_track_tint.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.7225324Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_tabs_icon_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_tabs_icon_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.7359081Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_tabs_ripple_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_tabs_ripple_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.7474606Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_textfield_filled_background_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_textfield_filled_background_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.7564741Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_textfield_indicator_text_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_textfield_indicator_text_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.7641444Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_textfield_input_text_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_textfield_input_text_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.7713101Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_textfield_label_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_textfield_label_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.7793631Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_textfield_stroke_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_textfield_stroke_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.7868337Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_text_button_background_color_selector.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_text_button_background_color_selector.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.7944153Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_text_button_foreground_color_selector.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_text_button_foreground_color_selector.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.8020384Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_text_button_ripple_color_selector.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_text_button_ripple_color_selector.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.8098141Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_timepicker_button_background_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_timepicker_button_background_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.8172960Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_timepicker_button_ripple_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_timepicker_button_ripple_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.8248604Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_timepicker_button_text_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_timepicker_button_text_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.8270541Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_timepicker_clock_text_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_timepicker_clock_text_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.8345549Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_timepicker_display_background_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_timepicker_display_background_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.8421347Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_timepicker_display_ripple_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_timepicker_display_ripple_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.8493113Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_timepicker_display_stroke_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_timepicker_display_stroke_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.8569990Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_timepicker_display_text_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_timepicker_display_text_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.8646974Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_timepicker_secondary_text_button_ripple_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_timepicker_secondary_text_button_ripple_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.8666747Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_timepicker_secondary_text_button_text_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_timepicker_secondary_text_button_text_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.8741227Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_tonal_button_ripple_color_selector.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\m3_tonal_button_ripple_color_selector.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.8826626Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_cursor_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_cursor_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.8921705Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_divider_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_divider_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.9037689Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_on_background_disabled.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_on_background_disabled.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.9139917Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_on_background_emphasis_high_type.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_on_background_emphasis_high_type.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.9167967Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_on_background_emphasis_medium.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_on_background_emphasis_medium.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.9271323Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_on_primary_disabled.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_on_primary_disabled.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.9375745Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_on_primary_emphasis_high_type.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_on_primary_emphasis_high_type.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.9476327Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_on_primary_emphasis_medium.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_on_primary_emphasis_medium.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.9578219Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_on_surface_disabled.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_on_surface_disabled.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.9610997Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_on_surface_emphasis_high_type.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_on_surface_emphasis_high_type.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.9714092Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_on_surface_emphasis_medium.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_on_surface_emphasis_medium.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.9810571Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_on_surface_stroke.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_on_surface_stroke.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.9896192Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_slider_active_tick_marks_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_slider_active_tick_marks_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:30.9977992Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_slider_active_track_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_slider_active_track_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.0051475Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_slider_halo_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_slider_halo_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.0147312Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_slider_inactive_tick_marks_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_slider_inactive_tick_marks_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.0221443Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_slider_inactive_track_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_slider_inactive_track_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.0306586Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_slider_thumb_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_slider_thumb_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.0384792Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_timepicker_button_background.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_timepicker_button_background.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.0471022Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_timepicker_button_stroke.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_timepicker_button_stroke.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.0546168Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_timepicker_clockface.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_timepicker_clockface.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.0621972Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_timepicker_clock_text_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_timepicker_clock_text_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.0693118Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_timepicker_modebutton_tint.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\material_timepicker_modebutton_tint.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.0764949Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_btn_bg_color_selector.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_btn_bg_color_selector.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.0841921Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_btn_ripple_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_btn_ripple_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.0919138Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_btn_stroke_color_selector.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_btn_stroke_color_selector.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.0991789Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_btn_text_btn_bg_color_selector.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_btn_text_btn_bg_color_selector.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.1068042Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_btn_text_btn_ripple_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_btn_text_btn_ripple_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.1141598Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_btn_text_color_selector.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_btn_text_color_selector.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.1219500Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_calendar_item_stroke_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_calendar_item_stroke_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.1291293Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_calendar_selected_range.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_calendar_selected_range.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.1374302Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_card_view_foreground.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_card_view_foreground.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.1397785Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_card_view_ripple.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_card_view_ripple.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.1485643Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_chip_background_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_chip_background_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.1568397Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_chip_close_icon_tint.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_chip_close_icon_tint.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.1646316Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_chip_surface_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_chip_surface_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.1729421Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_chip_text_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_chip_text_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.1821347Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_choice_chip_background_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_choice_chip_background_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.1845299Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_choice_chip_ripple_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_choice_chip_ripple_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.1928761Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_choice_chip_text_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_choice_chip_text_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.2017552Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_error.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_error.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.2109677Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_fab_bg_color_selector.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_fab_bg_color_selector.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.2196271Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_fab_icon_text_color_selector.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_fab_icon_text_color_selector.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.2288921Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_fab_ripple_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_fab_ripple_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.2380949Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_filled_background_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_filled_background_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.2475120Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_filled_icon_tint.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_filled_icon_tint.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.2566633Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_filled_stroke_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_filled_stroke_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.2657760Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_indicator_text_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_indicator_text_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.2751768Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_navigation_bar_colored_item_tint.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_navigation_bar_colored_item_tint.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.2849275Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_navigation_bar_colored_ripple_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_navigation_bar_colored_ripple_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.2934532Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_navigation_bar_item_tint.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_navigation_bar_item_tint.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.3014394Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_navigation_bar_ripple_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_navigation_bar_ripple_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.3091352Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_navigation_item_background_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_navigation_item_background_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.3167103Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_navigation_item_icon_tint.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_navigation_item_icon_tint.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.3187198Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_navigation_item_text_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_navigation_item_text_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.3260694Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_on_primary_text_btn_text_color_selector.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_on_primary_text_btn_text_color_selector.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.3336907Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_on_surface_ripple_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_on_surface_ripple_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.3360746Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_outlined_icon_tint.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_outlined_icon_tint.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.3434259Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_outlined_stroke_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_outlined_stroke_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.3508909Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_popupmenu_overlay_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_popupmenu_overlay_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.3532572Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_tabs_colored_ripple_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_tabs_colored_ripple_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.3609494Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_tabs_icon_color_selector.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_tabs_icon_color_selector.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.3686665Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_tabs_icon_color_selector_colored.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_tabs_icon_color_selector_colored.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.3759080Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_tabs_legacy_text_color_selector.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_tabs_legacy_text_color_selector.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.3837596Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_tabs_ripple_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_tabs_ripple_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.3914028Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_text_btn_text_color_selector.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\mtrl_text_btn_text_color_selector.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.3988069Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\radiobutton_themeable_attribute_color.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\radiobutton_themeable_attribute_color.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.4059788Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\test_mtrl_calendar_day.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\test_mtrl_calendar_day.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.4145956Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\test_mtrl_calendar_day_selected.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color\\test_mtrl_calendar_day_selected.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.4254499Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color-night-v8\\material_timepicker_button_stroke.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color-night-v8\\material_timepicker_button_stroke.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.4367904Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color-night-v8\\material_timepicker_clockface.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color-night-v8\\material_timepicker_clockface.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.4501968Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color-night-v8\\material_timepicker_modebutton_tint.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color-night-v8\\material_timepicker_modebutton_tint.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.4663212Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color-v31\\m3_dynamic_dark_default_color_primary_text.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color-v31\\m3_dynamic_dark_default_color_primary_text.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.4805428Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color-v31\\m3_dynamic_dark_default_color_secondary_text.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color-v31\\m3_dynamic_dark_default_color_secondary_text.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.4943760Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color-v31\\m3_dynamic_dark_highlighted_text.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color-v31\\m3_dynamic_dark_highlighted_text.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.5086155Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color-v31\\m3_dynamic_dark_hint_foreground.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color-v31\\m3_dynamic_dark_hint_foreground.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.5221204Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color-v31\\m3_dynamic_dark_primary_text_disable_only.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color-v31\\m3_dynamic_dark_primary_text_disable_only.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.5355208Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color-v31\\m3_dynamic_default_color_primary_text.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color-v31\\m3_dynamic_default_color_primary_text.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.5459957Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color-v31\\m3_dynamic_default_color_secondary_text.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color-v31\\m3_dynamic_default_color_secondary_text.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.5553718Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color-v31\\m3_dynamic_highlighted_text.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color-v31\\m3_dynamic_highlighted_text.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.5666121Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color-v31\\m3_dynamic_hint_foreground.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color-v31\\m3_dynamic_hint_foreground.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.5803633Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color-v31\\m3_dynamic_primary_text_disable_only.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\color-v31\\m3_dynamic_primary_text_disable_only.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.5958275Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\avd_hide_password.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\avd_hide_password.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.6082539Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\avd_show_password.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\avd_show_password.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.6199453Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\design_fab_background.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\design_fab_background.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.6319665Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\design_ic_visibility.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\design_ic_visibility.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.6450020Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\design_ic_visibility_off.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\design_ic_visibility_off.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.6553115Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\design_password_eye.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\design_password_eye.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.6639973Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\design_snackbar_background.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\design_snackbar_background.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.6720566Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\ic_clock_black_24dp.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\ic_clock_black_24dp.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.6799862Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\ic_keyboard_black_24dp.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\ic_keyboard_black_24dp.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.6877961Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\ic_m3_chip_check.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\ic_m3_chip_check.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.6962185Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\ic_m3_chip_checked_circle.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\ic_m3_chip_checked_circle.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.7055989Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\ic_m3_chip_close.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\ic_m3_chip_close.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.7141242Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\ic_mtrl_checked_circle.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\ic_mtrl_checked_circle.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.7222794Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\ic_mtrl_chip_checked_black.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\ic_mtrl_chip_checked_black.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.7306300Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\ic_mtrl_chip_checked_circle.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\ic_mtrl_chip_checked_circle.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.7394705Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\ic_mtrl_chip_close_circle.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\ic_mtrl_chip_close_circle.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.7479704Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\m3_popupmenu_background_overlay.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\m3_popupmenu_background_overlay.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.7558967Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\m3_tabs_line_indicator.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\m3_tabs_line_indicator.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.7642946Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\m3_tabs_rounded_line_indicator.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\m3_tabs_rounded_line_indicator.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.7727627Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\material_cursor_drawable.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\material_cursor_drawable.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.7806453Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\material_ic_calendar_black_24dp.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\material_ic_calendar_black_24dp.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.7876988Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\material_ic_clear_black_24dp.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\material_ic_clear_black_24dp.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.7946162Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\material_ic_edit_black_24dp.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\material_ic_edit_black_24dp.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.8027320Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\material_ic_keyboard_arrow_left_black_24dp.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\material_ic_keyboard_arrow_left_black_24dp.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.8107532Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\material_ic_keyboard_arrow_right_black_24dp.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\material_ic_keyboard_arrow_right_black_24dp.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.8196362Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\material_ic_menu_arrow_down_black_24dp.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\material_ic_menu_arrow_down_black_24dp.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.8329305Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\material_ic_menu_arrow_up_black_24dp.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\material_ic_menu_arrow_up_black_24dp.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.8465453Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\mtrl_dialog_background.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\mtrl_dialog_background.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.8567077Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\mtrl_dropdown_arrow.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\mtrl_dropdown_arrow.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.8673337Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\mtrl_ic_arrow_drop_down.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\mtrl_ic_arrow_drop_down.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.8777550Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\mtrl_ic_arrow_drop_up.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\mtrl_ic_arrow_drop_up.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.8885139Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\mtrl_ic_cancel.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\mtrl_ic_cancel.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.8995089Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\mtrl_ic_error.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\mtrl_ic_error.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.9024456Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\mtrl_navigation_bar_item_background.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\mtrl_navigation_bar_item_background.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.9127211Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\mtrl_popupmenu_background.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\mtrl_popupmenu_background.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.9214755Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\mtrl_popupmenu_background_overlay.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\mtrl_popupmenu_background_overlay.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.9292947Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\mtrl_tabs_default_indicator.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\mtrl_tabs_default_indicator.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.9364823Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\navigation_empty_icon.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\navigation_empty_icon.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.9443757Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\test_custom_background.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable\\test_custom_background.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.9529831Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable-v21\\m3_tabs_background.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable-v21\\m3_tabs_background.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.9603182Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable-v21\\material_cursor_drawable.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable-v21\\material_cursor_drawable.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.9675882Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable-v21\\mtrl_navigation_bar_item_background.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable-v21\\mtrl_navigation_bar_item_background.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.9765940Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable-v23\\m3_appbar_background.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable-v23\\m3_appbar_background.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.9850053Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable-v23\\m3_popupmenu_background_overlay.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable-v23\\m3_popupmenu_background_overlay.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.9939955Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable-v23\\m3_radiobutton_ripple.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable-v23\\m3_radiobutton_ripple.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:31.9964706Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable-v23\\m3_selection_control_ripple.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable-v23\\m3_selection_control_ripple.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.0061031Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable-v23\\m3_tabs_background.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable-v23\\m3_tabs_background.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.0171033Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable-v23\\m3_tabs_transparent_background.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable-v23\\m3_tabs_transparent_background.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.0318135Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable-v23\\mtrl_popupmenu_background_overlay.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\drawable-v23\\mtrl_popupmenu_background_overlay.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.0463327Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\interpolator\\mtrl_fast_out_linear_in.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\interpolator\\mtrl_fast_out_linear_in.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.0582208Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\interpolator\\mtrl_fast_out_slow_in.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\interpolator\\mtrl_fast_out_slow_in.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.0710338Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\interpolator\\mtrl_linear.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\interpolator\\mtrl_linear.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.0843179Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\interpolator\\mtrl_linear_out_slow_in.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\interpolator\\mtrl_linear_out_slow_in.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.0994914Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\interpolator-v21\\mtrl_fast_out_linear_in.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\interpolator-v21\\mtrl_fast_out_linear_in.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.1125519Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\interpolator-v21\\mtrl_fast_out_slow_in.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\interpolator-v21\\mtrl_fast_out_slow_in.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.1263486Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\interpolator-v21\\mtrl_linear_out_slow_in.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\interpolator-v21\\mtrl_linear_out_slow_in.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.1461487Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\design_bottom_navigation_item.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\design_bottom_navigation_item.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.1604279Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\design_bottom_sheet_dialog.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\design_bottom_sheet_dialog.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.1745293Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\design_layout_snackbar.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\design_layout_snackbar.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.1890268Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\design_layout_snackbar_include.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\design_layout_snackbar_include.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.2022094Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\design_layout_tab_icon.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\design_layout_tab_icon.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.2158811Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\design_layout_tab_text.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\design_layout_tab_text.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.2299309Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\design_menu_item_action_area.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\design_menu_item_action_area.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.2444975Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\design_navigation_item.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\design_navigation_item.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.2584150Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\design_navigation_item_header.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\design_navigation_item_header.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.2735322Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\design_navigation_item_separator.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\design_navigation_item_separator.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.2881578Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\design_navigation_item_subheader.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\design_navigation_item_subheader.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.3018409Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\design_navigation_menu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\design_navigation_menu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.3152511Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\design_navigation_menu_item.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\design_navigation_menu_item.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.3290669Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\design_text_input_end_icon.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\design_text_input_end_icon.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.3432462Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\design_text_input_start_icon.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\design_text_input_start_icon.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.3475324Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\m3_alert_dialog.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\m3_alert_dialog.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.3508425Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\m3_alert_dialog_actions.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\m3_alert_dialog_actions.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.3655168Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\m3_alert_dialog_title.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\m3_alert_dialog_title.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.3793800Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\m3_auto_complete_simple_item.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\m3_auto_complete_simple_item.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.3920650Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\material_chip_input_combo.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\material_chip_input_combo.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.4024946Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\material_clockface_textview.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\material_clockface_textview.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.4112197Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\material_clockface_view.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\material_clockface_view.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.4193630Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\material_clock_display.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\material_clock_display.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.4286241Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\material_clock_display_divider.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\material_clock_display_divider.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.4369503Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\material_clock_period_toggle.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\material_clock_period_toggle.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.4453662Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\material_radial_view_group.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\material_radial_view_group.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.4544759Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\material_textinput_timepicker.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\material_textinput_timepicker.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.4631415Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\material_timepicker.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\material_timepicker.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.4718520Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\material_timepicker_dialog.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\material_timepicker_dialog.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.4803036Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\material_timepicker_textinput_display.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\material_timepicker_textinput_display.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.4882384Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\material_time_chip.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\material_time_chip.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.4979667Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\material_time_input.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\material_time_input.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.5080816Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_alert_dialog.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_alert_dialog.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.5176796Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_alert_dialog_actions.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_alert_dialog_actions.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.5273479Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_alert_dialog_title.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_alert_dialog_title.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.5369314Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_alert_select_dialog_item.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_alert_select_dialog_item.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.5392599Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_alert_select_dialog_multichoice.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_alert_select_dialog_multichoice.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.5490547Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_alert_select_dialog_singlechoice.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_alert_select_dialog_singlechoice.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.5583842Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_auto_complete_simple_item.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_auto_complete_simple_item.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.5694903Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_calendar_day.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_calendar_day.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.5807631Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_calendar_days_of_week.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_calendar_days_of_week.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.5931851Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_calendar_day_of_week.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_calendar_day_of_week.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.6071012Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_calendar_horizontal.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_calendar_horizontal.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.6212656Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_calendar_month.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_calendar_month.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.6346667Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_calendar_months.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_calendar_months.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.6486838Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_calendar_month_labeled.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_calendar_month_labeled.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.6623438Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_calendar_month_navigation.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_calendar_month_navigation.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.6732365Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_calendar_vertical.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_calendar_vertical.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.6816478Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_calendar_year.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_calendar_year.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.6892139Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_layout_snackbar.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_layout_snackbar.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.6989204Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_layout_snackbar_include.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_layout_snackbar_include.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.7098330Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_navigation_rail_item.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_navigation_rail_item.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.7201434Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_picker_actions.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_picker_actions.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.7302230Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_picker_dialog.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_picker_dialog.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.7406801Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_picker_fullscreen.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_picker_fullscreen.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.7507898Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_picker_header_dialog.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_picker_header_dialog.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.7609754Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_picker_header_fullscreen.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_picker_header_fullscreen.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.7724570Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_picker_header_selection_text.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_picker_header_selection_text.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.7823512Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_picker_header_title_text.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_picker_header_title_text.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.7908215Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_picker_header_toggle.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_picker_header_toggle.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.7989140Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_picker_text_input_date.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_picker_text_input_date.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.8067885Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_picker_text_input_date_range.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\mtrl_picker_text_input_date_range.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.8144715Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\test_action_chip.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\test_action_chip.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.8221811Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\test_chip_zero_corner_radius.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\test_chip_zero_corner_radius.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.8299717Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\test_design_checkbox.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\test_design_checkbox.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.8377687Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\test_design_radiobutton.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\test_design_radiobutton.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.8457386Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\test_exposed_dropdown_menu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\test_exposed_dropdown_menu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.8535593Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\test_navigation_bar_item_layout.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\test_navigation_bar_item_layout.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.8627498Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\test_reflow_chipgroup.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\test_reflow_chipgroup.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.8718478Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\test_toolbar.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\test_toolbar.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.8811591Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\test_toolbar_custom_background.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\test_toolbar_custom_background.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.8902082Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\test_toolbar_elevation.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\test_toolbar_elevation.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.8993613Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\test_toolbar_surface.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\test_toolbar_surface.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.9084681Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\text_view_without_line_height.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\text_view_without_line_height.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.9175569Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\text_view_with_line_height_from_appearance.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\text_view_with_line_height_from_appearance.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.9273610Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\text_view_with_line_height_from_layout.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\text_view_with_line_height_from_layout.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.9377586Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\text_view_with_line_height_from_style.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\text_view_with_line_height_from_style.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.9468396Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\text_view_with_theme_line_height.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout\\text_view_with_theme_line_height.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.9586764Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout-land\\material_clock_period_toggle_land.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout-land\\material_clock_period_toggle_land.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.9684787Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout-land\\material_timepicker.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout-land\\material_timepicker.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.9774313Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout-land\\mtrl_picker_header_dialog.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout-land\\mtrl_picker_header_dialog.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.9873103Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout-ldrtl-v17\\material_textinput_timepicker.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout-ldrtl-v17\\material_textinput_timepicker.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.9897792Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout-sw600dp-v13\\design_layout_snackbar.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout-sw600dp-v13\\design_layout_snackbar.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:32.9977705Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout-sw600dp-v13\\mtrl_layout_snackbar.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout-sw600dp-v13\\mtrl_layout_snackbar.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.0075235Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout-v26\\mtrl_calendar_month.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\layout-v26\\mtrl_calendar_month.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.0285685Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.0392952Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-af\\values-af.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-af\\values-af.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.0508213Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-am\\values-am.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-am\\values-am.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.0608135Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-ar\\values-ar.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-ar\\values-ar.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.0696008Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-as\\values-as.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-as\\values-as.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.0786070Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-az\\values-az.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-az\\values-az.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.0872490Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-b+es+419\\values-b+es+419.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-b+es+419\\values-b+es+419.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.0963857Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-b+sr+Latn\\values-b+sr+Latn.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-b+sr+Latn\\values-b+sr+Latn.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.1049769Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-be\\values-be.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-be\\values-be.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.1140195Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-bg\\values-bg.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-bg\\values-bg.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.1226963Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-bn\\values-bn.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-bn\\values-bn.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.1319533Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-bs\\values-bs.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-bs\\values-bs.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.1409500Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-ca\\values-ca.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-ca\\values-ca.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.1502363Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-cs\\values-cs.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-cs\\values-cs.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.1592109Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-da\\values-da.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-da\\values-da.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.1682293Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-de\\values-de.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-de\\values-de.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.1770307Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-el\\values-el.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-el\\values-el.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.1799383Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-en-rGB\\values-en-rGB.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-en-rGB\\values-en-rGB.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.1828148Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-es\\values-es.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-es\\values-es.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.1855450Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-es-rUS\\values-es-rUS.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-es-rUS\\values-es-rUS.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.1951947Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-et\\values-et.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-et\\values-et.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.2049605Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-eu\\values-eu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-eu\\values-eu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.2153667Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-fa\\values-fa.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-fa\\values-fa.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.2265205Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-fi\\values-fi.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-fi\\values-fi.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.2397012Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-fr\\values-fr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-fr\\values-fr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.2515460Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-fr-rCA\\values-fr-rCA.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-fr-rCA\\values-fr-rCA.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.2628217Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-gl\\values-gl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-gl\\values-gl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.2666290Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-gu\\values-gu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-gu\\values-gu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.2749254Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-h320dp-port-v13\\values-h320dp-port-v13.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-h320dp-port-v13\\values-h320dp-port-v13.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.2779765Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-h360dp-land-v13\\values-h360dp-land-v13.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-h360dp-land-v13\\values-h360dp-land-v13.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.2870249Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-h480dp-land-v13\\values-h480dp-land-v13.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-h480dp-land-v13\\values-h480dp-land-v13.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.2955139Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-h550dp-port-v13\\values-h550dp-port-v13.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-h550dp-port-v13\\values-h550dp-port-v13.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.2989458Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-hi\\values-hi.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-hi\\values-hi.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.3106924Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-hr\\values-hr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-hr\\values-hr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.3221473Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-hu\\values-hu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-hu\\values-hu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.3321144Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-hy\\values-hy.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-hy\\values-hy.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.3408614Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-in\\values-in.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-in\\values-in.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.3494916Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-is\\values-is.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-is\\values-is.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.3588219Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-it\\values-it.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-it\\values-it.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.3678226Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-iw\\values-iw.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-iw\\values-iw.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.3774647Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-ja\\values-ja.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-ja\\values-ja.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.3866772Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-ka\\values-ka.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-ka\\values-ka.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.3895844Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-kk\\values-kk.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-kk\\values-kk.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.3984143Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-km\\values-km.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-km\\values-km.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.4070836Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-kn\\values-kn.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-kn\\values-kn.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.4165881Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-ko\\values-ko.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-ko\\values-ko.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.4274535Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-ky\\values-ky.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-ky\\values-ky.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.4374644Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-land\\values-land.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-land\\values-land.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.4473525Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-large-v4\\values-large-v4.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-large-v4\\values-large-v4.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.4564108Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-ldrtl-v17\\values-ldrtl-v17.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-ldrtl-v17\\values-ldrtl-v17.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.4692271Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-lo\\values-lo.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-lo\\values-lo.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.4822676Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-lt\\values-lt.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-lt\\values-lt.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.4953720Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-lv\\values-lv.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-lv\\values-lv.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.5000072Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-mk\\values-mk.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-mk\\values-mk.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.5146080Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-ml\\values-ml.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-ml\\values-ml.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.5294314Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-mn\\values-mn.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-mn\\values-mn.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.5487564Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-mr\\values-mr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-mr\\values-mr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.5688225Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-ms\\values-ms.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-ms\\values-ms.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.5838795Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-my\\values-my.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-my\\values-my.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.5988799Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-nb\\values-nb.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-nb\\values-nb.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.6130367Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-ne\\values-ne.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-ne\\values-ne.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.6261948Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-night-v8\\values-night-v8.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-night-v8\\values-night-v8.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.6407980Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-nl\\values-nl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-nl\\values-nl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.6556677Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-or\\values-or.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-or\\values-or.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.6694131Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-pa\\values-pa.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-pa\\values-pa.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.6846345Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-pl\\values-pl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-pl\\values-pl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.7003015Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-pt-rBR\\values-pt-rBR.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-pt-rBR\\values-pt-rBR.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.7167305Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-pt-rPT\\values-pt-rPT.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-pt-rPT\\values-pt-rPT.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.7327872Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-ro\\values-ro.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-ro\\values-ro.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.7483130Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-ru\\values-ru.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-ru\\values-ru.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.7637123Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-si\\values-si.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-si\\values-si.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.7798108Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-sk\\values-sk.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-sk\\values-sk.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.7960660Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-sl\\values-sl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-sl\\values-sl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.8096127Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-small-v4\\values-small-v4.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-small-v4\\values-small-v4.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.8258647Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-sq\\values-sq.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-sq\\values-sq.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.8416765Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-sr\\values-sr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-sr\\values-sr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.8583264Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-sv\\values-sv.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-sv\\values-sv.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.8746794Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-sw\\values-sw.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-sw\\values-sw.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.8944020Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-sw600dp-v13\\values-sw600dp-v13.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-sw600dp-v13\\values-sw600dp-v13.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.9103810Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-ta\\values-ta.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-ta\\values-ta.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.9268992Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-te\\values-te.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-te\\values-te.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.9429987Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-th\\values-th.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-th\\values-th.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.9605403Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-tl\\values-tl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-tl\\values-tl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.9782302Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-tr\\values-tr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-tr\\values-tr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:33.9954317Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-uk\\values-uk.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-uk\\values-uk.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.0121734Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-ur\\values-ur.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-ur\\values-ur.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.0288375Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-uz\\values-uz.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-uz\\values-uz.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.0437797Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-v21\\values-v21.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-v21\\values-v21.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.0624945Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-v23\\values-v23.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-v23\\values-v23.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.0779298Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-v24\\values-v24.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-v24\\values-v24.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.0928788Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-v28\\values-v28.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-v28\\values-v28.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.1073174Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-v31\\values-v31.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-v31\\values-v31.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.1239262Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-vi\\values-vi.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-vi\\values-vi.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.1363231Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-w320dp-land-v13\\values-w320dp-land-v13.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-w320dp-land-v13\\values-w320dp-land-v13.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.1497293Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-w360dp-port-v13\\values-w360dp-port-v13.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-w360dp-port-v13\\values-w360dp-port-v13.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.1633407Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-w480dp-port-v13\\values-w480dp-port-v13.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-w480dp-port-v13\\values-w480dp-port-v13.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.1761095Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-w600dp-land-v13\\values-w600dp-land-v13.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-w600dp-land-v13\\values-w600dp-land-v13.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.1928221Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-zh-rCN\\values-zh-rCN.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-zh-rCN\\values-zh-rCN.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.2093137Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-zh-rHK\\values-zh-rHK.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-zh-rHK\\values-zh-rHK.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.2267094Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-zh-rTW\\values-zh-rTW.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-zh-rTW\\values-zh-rTW.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.2457127Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-zu\\values-zu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\values-zu\\values-zu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.2657529Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\xml\\standalone_badge.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\xml\\standalone_badge.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.2819935Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\xml\\standalone_badge_gravity_bottom_end.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\xml\\standalone_badge_gravity_bottom_end.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.2857675Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\xml\\standalone_badge_gravity_bottom_start.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\xml\\standalone_badge_gravity_bottom_start.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.2992392Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\xml\\standalone_badge_gravity_top_start.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\xml\\standalone_badge_gravity_top_start.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.3125228Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\xml\\standalone_badge_offset.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\127\\jl\\res\\xml\\standalone_badge_offset.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.3287574Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\128\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\128\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.3418485Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\128\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\128\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.3514173Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\128\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\128\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.3595028Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\128\\jl\\proguard.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\128\\jl\\proguard.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.3604696Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\128\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\128\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.3682028Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\128\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\128\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.3768482Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\128\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\128\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.3852401Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\128\\jl\\flat\\128.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\128\\jl\\flat\\128.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.3906188Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\128\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\128\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.4002084Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\128\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\128\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.4103942Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\129\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\129\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.4181182Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\129\\jl\\annotations.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\129\\jl\\annotations.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.5374416Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\129\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\129\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.5531415Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\129\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\129\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.5692349Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\129\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\129\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.5907080Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\129\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\129\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.6058665Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\129\\jl\\flat\\129.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\129\\jl\\flat\\129.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.6115752Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\129\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\129\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.6308858Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\130\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\130\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.6475897Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\130\\jl\\annotations.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\130\\jl\\annotations.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.6669561Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\130\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\130\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.6845134Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\130\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\130\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.6852274Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\130\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\130\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.6863071Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\130\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\130\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.6959740Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\130\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\130\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.6982999Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\130\\jl\\flat\\130.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\130\\jl\\flat\\130.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.7028394Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\130\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\130\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.7114133Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\130\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\130\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.7223419Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\131\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\131\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.8280942Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\131\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\131\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.8287693Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\131\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\131\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.8330637Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\131\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\131\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.8432265Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\132\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\132\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.8655543Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\132\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\132\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.8728585Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\132\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\132\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.8778844Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\132\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\132\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.8890525Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\133\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\133\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.9275854Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\133\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\133\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.9443962Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\133\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\133\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.9454488Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\133\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\133\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.9470890Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\133\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\133\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.9511286Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\133\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\133\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.9554076Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\133\\jl\\flat\\133.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\133\\jl\\flat\\133.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.9629249Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\133\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\133\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.9684610Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\133\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\133\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.9833724Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\134\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\134\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:34.9982336Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\134\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\134\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.0173808Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\134\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\134\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.0183996Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\134\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\134\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.0205965Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\134\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\134\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.0235621Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\134\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\134\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.0276260Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\134\\jl\\flat\\134.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\134\\jl\\flat\\134.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.0335071Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\134\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\134\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.0364630Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\134\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\134\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.0465672Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\135\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\135\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.0543655Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\135\\jl\\baseline-prof.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\135\\jl\\baseline-prof.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.0672781Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\135\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\135\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.0766062Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\135\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\135\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.0841258Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\135\\jl\\proguard.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\135\\jl\\proguard.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.0851270Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\135\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\135\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.0928892Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\135\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\135\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.1053083Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\135\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\135\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.1200174Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\135\\jl\\flat\\135.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\135\\jl\\flat\\135.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.1288144Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\135\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\135\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.1454165Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\135\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\135\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.1615594Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\136\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\136\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.4012709Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\136\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\136\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.4181839Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\136\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\136\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.4190892Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\136\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\136\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.4209776Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\136\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\136\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.4239629Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\136\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\136\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.4277837Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\136\\jl\\flat\\136.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\136\\jl\\flat\\136.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.4365566Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\136\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\136\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.4413561Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\136\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\136\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.4575050Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.4754475Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\baseline-prof.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\baseline-prof.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.4952030Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.5166668Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.5178291Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.5318615Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.5475213Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.5617706Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\flat\\137.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\flat\\137.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.5699655Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.5891691Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\137\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.6106106Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.8782520Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.8961732Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.9094701Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\proguard.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\proguard.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.9167538Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.9257392Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.9406933Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.9514084Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\flat\\138.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\flat\\138.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.9565699Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.9686279Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\anim\\nav_default_enter_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\anim\\nav_default_enter_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.9760772Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\anim\\nav_default_exit_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\anim\\nav_default_exit_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.9785265Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\anim\\nav_default_pop_enter_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\anim\\nav_default_pop_enter_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.9807982Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\anim\\nav_default_pop_exit_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\anim\\nav_default_pop_exit_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:35.9912775Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\animator\\nav_default_enter_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\animator\\nav_default_enter_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.0016339Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\animator\\nav_default_exit_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\animator\\nav_default_exit_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.0042012Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\animator\\nav_default_pop_enter_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\animator\\nav_default_pop_enter_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.0062821Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\animator\\nav_default_pop_exit_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\animator\\nav_default_pop_exit_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.0085903Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.0172422Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-af\\values-af.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-af\\values-af.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.0268544Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-am\\values-am.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-am\\values-am.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.0359124Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-ar\\values-ar.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-ar\\values-ar.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.0448663Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-as\\values-as.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-as\\values-as.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.0544108Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-az\\values-az.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-az\\values-az.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.0649086Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-b+sr+Latn\\values-b+sr+Latn.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-b+sr+Latn\\values-b+sr+Latn.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.0742722Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-be\\values-be.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-be\\values-be.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.0841683Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-bg\\values-bg.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-bg\\values-bg.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.0976668Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-bn\\values-bn.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-bn\\values-bn.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.1097004Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-bs\\values-bs.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-bs\\values-bs.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.1222583Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-ca\\values-ca.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-ca\\values-ca.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.1351414Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-cs\\values-cs.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-cs\\values-cs.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.1482448Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-da\\values-da.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-da\\values-da.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.1525130Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-de\\values-de.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-de\\values-de.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.1662078Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-el\\values-el.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-el\\values-el.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.1790710Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-en-rAU\\values-en-rAU.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-en-rAU\\values-en-rAU.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.1839090Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-en-rGB\\values-en-rGB.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-en-rGB\\values-en-rGB.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.1885422Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-en-rIN\\values-en-rIN.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-en-rIN\\values-en-rIN.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.2016120Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-es\\values-es.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-es\\values-es.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.2141820Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-es-rUS\\values-es-rUS.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-es-rUS\\values-es-rUS.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.2284302Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-et\\values-et.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-et\\values-et.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.2410865Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-eu\\values-eu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-eu\\values-eu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.2462521Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-fa\\values-fa.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-fa\\values-fa.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.2597306Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-fi\\values-fi.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-fi\\values-fi.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.2728665Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-fr\\values-fr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-fr\\values-fr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.2861112Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-fr-rCA\\values-fr-rCA.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-fr-rCA\\values-fr-rCA.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.2990528Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-gl\\values-gl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-gl\\values-gl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.3117370Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-gu\\values-gu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-gu\\values-gu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.3251444Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-hi\\values-hi.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-hi\\values-hi.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.3294350Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-hr\\values-hr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-hr\\values-hr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.3425133Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-hu\\values-hu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-hu\\values-hu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.3553078Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-hy\\values-hy.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-hy\\values-hy.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.3599205Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-in\\values-in.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-in\\values-in.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.3721482Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-is\\values-is.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-is\\values-is.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.3856521Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-it\\values-it.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-it\\values-it.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.3983558Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-iw\\values-iw.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-iw\\values-iw.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.4121421Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-ja\\values-ja.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-ja\\values-ja.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.4248584Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-ka\\values-ka.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-ka\\values-ka.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.4386046Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-kk\\values-kk.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-kk\\values-kk.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.4513451Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-km\\values-km.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-km\\values-km.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.4645637Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-kn\\values-kn.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-kn\\values-kn.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.4771840Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-ko\\values-ko.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-ko\\values-ko.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.4900014Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-ky\\values-ky.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-ky\\values-ky.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.5033920Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-lo\\values-lo.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-lo\\values-lo.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.5159975Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-lt\\values-lt.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-lt\\values-lt.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.5284697Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-lv\\values-lv.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-lv\\values-lv.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.5415560Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-mk\\values-mk.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-mk\\values-mk.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.5489799Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-ml\\values-ml.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-ml\\values-ml.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.5566198Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-mn\\values-mn.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-mn\\values-mn.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.5653162Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-mr\\values-mr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-mr\\values-mr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.5736664Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-ms\\values-ms.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-ms\\values-ms.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.5819803Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-my\\values-my.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-my\\values-my.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.5906410Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-nb\\values-nb.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-nb\\values-nb.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.6028538Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-ne\\values-ne.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-ne\\values-ne.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.6151246Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-nl\\values-nl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-nl\\values-nl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.6270813Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-or\\values-or.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-or\\values-or.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.6362522Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-pa\\values-pa.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-pa\\values-pa.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.6456381Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-pl\\values-pl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-pl\\values-pl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.6572130Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-pt\\values-pt.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-pt\\values-pt.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.6601014Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-pt-rBR\\values-pt-rBR.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-pt-rBR\\values-pt-rBR.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.6635624Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-pt-rPT\\values-pt-rPT.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-pt-rPT\\values-pt-rPT.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.6724689Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-ro\\values-ro.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-ro\\values-ro.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.6810494Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-ru\\values-ru.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-ru\\values-ru.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.6889907Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-si\\values-si.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-si\\values-si.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.6971125Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-sk\\values-sk.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-sk\\values-sk.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.7044627Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-sl\\values-sl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-sl\\values-sl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.7124463Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-sq\\values-sq.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-sq\\values-sq.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.7199453Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-sr\\values-sr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-sr\\values-sr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.7269157Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-sv\\values-sv.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-sv\\values-sv.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.7334272Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-sw\\values-sw.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-sw\\values-sw.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.7405496Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-ta\\values-ta.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-ta\\values-ta.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.7470665Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-te\\values-te.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-te\\values-te.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.7541892Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-th\\values-th.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-th\\values-th.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.7606515Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-tl\\values-tl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-tl\\values-tl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.7689225Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-tr\\values-tr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-tr\\values-tr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.7753870Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-uk\\values-uk.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-uk\\values-uk.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.7827661Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-ur\\values-ur.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-ur\\values-ur.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.7895866Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-uz\\values-uz.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-uz\\values-uz.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.7972992Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-vi\\values-vi.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-vi\\values-vi.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.8048187Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-zh-rCN\\values-zh-rCN.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-zh-rCN\\values-zh-rCN.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.8124629Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-zh-rHK\\values-zh-rHK.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-zh-rHK\\values-zh-rHK.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.8189048Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-zh-rTW\\values-zh-rTW.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-zh-rTW\\values-zh-rTW.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.8257180Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-zu\\values-zu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\138\\jl\\res\\values-zu\\values-zu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.8339001Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\139\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\139\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.8553225Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\139\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\139\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.8633631Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\139\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\139\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.8639510Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\139\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\139\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.8649341Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\139\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\139\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.8666715Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\139\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\139\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.8683452Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\139\\jl\\flat\\139.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\139\\jl\\flat\\139.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.8729029Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\139\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\139\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.8751518Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\139\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\139\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.8851128Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\140\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\140\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:36.9987439Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\140\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\140\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.0181124Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\140\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\140\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.0190729Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\140\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\140\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.0207655Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\140\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\140\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.0235658Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\140\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\140\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.0275053Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\140\\jl\\flat\\140.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\140\\jl\\flat\\140.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.0357454Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\140\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\140\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.0404148Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\140\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\140\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.0599378Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.0756389Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\baseline-prof.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\baseline-prof.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.0936429Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.1051576Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.1058756Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.1139915Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.1217500Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.1305289Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\flat\\141.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\flat\\141.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.1350406Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.1429955Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\141\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.1520691Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.1601574Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\annotations.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\annotations.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.1721689Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.1833785Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.1902211Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\proguard.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\proguard.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.1959175Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.2036902Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.2119710Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.2225135Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\aidl\\android\\support\\v4\\media\\MediaDescriptionCompat.aidl","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\aidl\\android\\support\\v4\\media\\MediaDescriptionCompat.aidl","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.2292130Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\aidl\\android\\support\\v4\\media\\MediaMetadataCompat.aidl","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\aidl\\android\\support\\v4\\media\\MediaMetadataCompat.aidl","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.2380001Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\aidl\\android\\support\\v4\\media\\RatingCompat.aidl","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\aidl\\android\\support\\v4\\media\\RatingCompat.aidl","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.2466904Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\aidl\\android\\support\\v4\\media\\session\\MediaSessionCompat.aidl","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\aidl\\android\\support\\v4\\media\\session\\MediaSessionCompat.aidl","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.2541060Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\aidl\\android\\support\\v4\\media\\session\\ParcelableVolumeInfo.aidl","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\aidl\\android\\support\\v4\\media\\session\\ParcelableVolumeInfo.aidl","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.2618013Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\aidl\\android\\support\\v4\\media\\session\\PlaybackStateCompat.aidl","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\aidl\\android\\support\\v4\\media\\session\\PlaybackStateCompat.aidl","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.2715031Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\flat\\142.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\flat\\142.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.2766640Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.2868259Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\res\\layout\\notification_media_action.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\res\\layout\\notification_media_action.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.2959769Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\res\\layout\\notification_media_cancel_action.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\res\\layout\\notification_media_cancel_action.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.3058658Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\res\\layout\\notification_template_big_media.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\res\\layout\\notification_template_big_media.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.3150952Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\res\\layout\\notification_template_big_media_custom.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\res\\layout\\notification_template_big_media_custom.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.3248590Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\res\\layout\\notification_template_big_media_narrow.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\res\\layout\\notification_template_big_media_narrow.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.3344829Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\res\\layout\\notification_template_big_media_narrow_custom.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\res\\layout\\notification_template_big_media_narrow_custom.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.3447224Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\res\\layout\\notification_template_lines_media.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\res\\layout\\notification_template_lines_media.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.3546133Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\res\\layout\\notification_template_media.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\res\\layout\\notification_template_media.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.3640470Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\res\\layout\\notification_template_media_custom.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\res\\layout\\notification_template_media_custom.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.3743710Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.3835953Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\res\\values-v21\\values-v21.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\res\\values-v21\\values-v21.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.3923612Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\res\\values-v24\\values-v24.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\142\\jl\\res\\values-v24\\values-v24.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.4046724Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\143\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\143\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.4918751Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\143\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\143\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.5034174Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\143\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\143\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.5041468Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\143\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\143\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.5056568Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\143\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\143\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.5073308Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\143\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\143\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.5097026Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\143\\jl\\flat\\143.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\143\\jl\\flat\\143.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.5151395Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\143\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\143\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.5181325Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\143\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\143\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.5284801Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\144\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\144\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.5752874Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\144\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\144\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.5780583Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\144\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\144\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.5918258Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\145\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\145\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.6344621Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\145\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\145\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.6428944Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\145\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\145\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.6533838Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\146\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\146\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.6626309Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\146\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\146\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.6708145Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\146\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\146\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.6810082Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.6888654Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\annotations.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\annotations.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.6993985Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.7000970Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.7051275Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\147\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.7144352Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.7217230Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\annotations.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\annotations.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.7318881Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.7428479Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.7435267Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.7508918Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.7622667Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.7792481Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\flat\\148.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\flat\\148.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.7861539Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.8013661Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\layout\\browser_actions_context_menu_page.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\layout\\browser_actions_context_menu_page.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.8127865Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\layout\\browser_actions_context_menu_row.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\layout\\browser_actions_context_menu_row.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.8235808Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.8334444Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-af\\values-af.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-af\\values-af.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.8438533Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-am\\values-am.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-am\\values-am.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.8560523Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-ar\\values-ar.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-ar\\values-ar.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.8692294Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-as\\values-as.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-as\\values-as.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.8820929Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-az\\values-az.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-az\\values-az.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.8949498Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-b+sr+Latn\\values-b+sr+Latn.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-b+sr+Latn\\values-b+sr+Latn.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.9081526Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-be\\values-be.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-be\\values-be.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.9211466Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-bg\\values-bg.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-bg\\values-bg.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.9329710Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-bn\\values-bn.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-bn\\values-bn.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.9415770Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-bs\\values-bs.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-bs\\values-bs.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.9500961Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-ca\\values-ca.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-ca\\values-ca.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.9605232Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-cs\\values-cs.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-cs\\values-cs.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.9722908Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-da\\values-da.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-da\\values-da.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.9839285Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-de\\values-de.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-de\\values-de.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.9916642Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-el\\values-el.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-el\\values-el.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:37.9987755Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-en-rAU\\values-en-rAU.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-en-rAU\\values-en-rAU.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.0010545Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-en-rCA\\values-en-rCA.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-en-rCA\\values-en-rCA.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.0031916Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-en-rGB\\values-en-rGB.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-en-rGB\\values-en-rGB.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.0055949Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-en-rIN\\values-en-rIN.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-en-rIN\\values-en-rIN.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.0131492Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-en-rXC\\values-en-rXC.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-en-rXC\\values-en-rXC.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.0201022Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-es\\values-es.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-es\\values-es.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.0273629Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-es-rUS\\values-es-rUS.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-es-rUS\\values-es-rUS.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.0346710Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-et\\values-et.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-et\\values-et.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.0434687Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-eu\\values-eu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-eu\\values-eu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.0504417Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-fa\\values-fa.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-fa\\values-fa.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.0577616Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-fi\\values-fi.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-fi\\values-fi.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.0647815Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-fr\\values-fr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-fr\\values-fr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.0717387Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-fr-rCA\\values-fr-rCA.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-fr-rCA\\values-fr-rCA.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.0788518Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-gl\\values-gl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-gl\\values-gl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.0858890Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-gu\\values-gu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-gu\\values-gu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.0940870Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-hi\\values-hi.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-hi\\values-hi.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.1007930Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-hr\\values-hr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-hr\\values-hr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.1076291Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-hu\\values-hu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-hu\\values-hu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.1145052Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-hy\\values-hy.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-hy\\values-hy.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.1214130Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-in\\values-in.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-in\\values-in.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.1286028Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-is\\values-is.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-is\\values-is.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.1358407Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-it\\values-it.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-it\\values-it.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.1433732Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-iw\\values-iw.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-iw\\values-iw.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.1507153Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-ja\\values-ja.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-ja\\values-ja.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.1584448Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-ka\\values-ka.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-ka\\values-ka.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.1656626Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-kk\\values-kk.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-kk\\values-kk.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.1738639Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-km\\values-km.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-km\\values-km.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.1827614Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-kn\\values-kn.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-kn\\values-kn.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.1909972Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-ko\\values-ko.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-ko\\values-ko.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.1994354Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-ky\\values-ky.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-ky\\values-ky.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.2082503Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-lo\\values-lo.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-lo\\values-lo.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.2172540Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-lt\\values-lt.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-lt\\values-lt.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.2259162Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-lv\\values-lv.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-lv\\values-lv.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.2362663Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-mk\\values-mk.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-mk\\values-mk.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.2496069Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-ml\\values-ml.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-ml\\values-ml.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.2630070Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-mn\\values-mn.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-mn\\values-mn.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.2770478Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-mr\\values-mr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-mr\\values-mr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.2903407Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-ms\\values-ms.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-ms\\values-ms.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.3039841Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-my\\values-my.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-my\\values-my.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.3173641Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-nb\\values-nb.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-nb\\values-nb.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.3289857Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-ne\\values-ne.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-ne\\values-ne.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.3322639Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-nl\\values-nl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-nl\\values-nl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.3413048Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-or\\values-or.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-or\\values-or.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.3490995Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-pa\\values-pa.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-pa\\values-pa.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.3519232Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-pl\\values-pl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-pl\\values-pl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.3606368Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-pt\\values-pt.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-pt\\values-pt.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.3638060Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-pt-rBR\\values-pt-rBR.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-pt-rBR\\values-pt-rBR.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.3733895Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-pt-rPT\\values-pt-rPT.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-pt-rPT\\values-pt-rPT.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.3829330Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-ro\\values-ro.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-ro\\values-ro.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.3923846Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-ru\\values-ru.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-ru\\values-ru.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.4024827Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-si\\values-si.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-si\\values-si.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.4118591Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-sk\\values-sk.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-sk\\values-sk.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.4213703Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-sl\\values-sl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-sl\\values-sl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.4306802Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-sq\\values-sq.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-sq\\values-sq.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.4419696Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-sr\\values-sr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-sr\\values-sr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.4567559Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-sv\\values-sv.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-sv\\values-sv.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.4701889Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-sw\\values-sw.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-sw\\values-sw.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.4839517Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-ta\\values-ta.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-ta\\values-ta.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.4979331Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-te\\values-te.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-te\\values-te.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.5117127Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-th\\values-th.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-th\\values-th.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.5261877Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-tl\\values-tl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-tl\\values-tl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.5366927Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-tr\\values-tr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-tr\\values-tr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.5462735Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-uk\\values-uk.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-uk\\values-uk.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.5588603Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-ur\\values-ur.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-ur\\values-ur.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.5717990Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-uz\\values-uz.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-uz\\values-uz.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.5846752Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-vi\\values-vi.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-vi\\values-vi.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.5981165Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-zh-rCN\\values-zh-rCN.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-zh-rCN\\values-zh-rCN.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.6073649Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-zh-rHK\\values-zh-rHK.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-zh-rHK\\values-zh-rHK.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.6145034Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-zh-rTW\\values-zh-rTW.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-zh-rTW\\values-zh-rTW.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.6214233Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-zu\\values-zu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\values-zu\\values-zu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.6286962Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\xml\\image_share_filepaths.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\148\\jl\\res\\xml\\image_share_filepaths.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.6364261Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\149\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\149\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.6435015Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\149\\jl\\annotations.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\149\\jl\\annotations.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.6799992Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\149\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\149\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.6807028Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\149\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\149\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.6908466Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\150\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\150\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.7065118Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\150\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\150\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.7151635Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\150\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\150\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.7216231Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\150\\jl\\proguard.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\150\\jl\\proguard.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.7303941Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\150\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\150\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.7389005Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\150\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\150\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.7476443Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\150\\jl\\flat\\150.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\150\\jl\\flat\\150.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.7562532Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\150\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\150\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.7710458Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\151\\jl\\libs\\ED64959F88B22E6D.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\151\\jl\\libs\\ED64959F88B22E6D.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.7897441Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.8024354Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.8176683Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\.net\\__res_name_case_map.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\.net\\__res_name_case_map.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.8313332Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\flat\\anim_enterfromleft.xml.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\flat\\anim_enterfromleft.xml.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.8434206Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\flat\\anim_enterfromright.xml.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\flat\\anim_enterfromright.xml.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.8565968Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\flat\\anim_exittoleft.xml.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\flat\\anim_exittoleft.xml.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.8687248Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\flat\\anim_exittoright.xml.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\flat\\anim_exittoright.xml.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.8848224Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\flat\\layout_flyoutcontent.xml.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\flat\\layout_flyoutcontent.xml.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.8973178Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\flat\\layout_shellcontent.xml.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\flat\\layout_shellcontent.xml.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.9080990Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\flat\\values_strings.arsc.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\flat\\values_strings.arsc.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.9186702Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\res\\anim\\enterfromleft.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\res\\anim\\enterfromleft.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.9259060Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\res\\anim\\enterfromright.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\res\\anim\\enterfromright.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.9328258Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\res\\anim\\exittoleft.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\res\\anim\\exittoleft.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.9396314Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\res\\anim\\exittoright.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\res\\anim\\exittoright.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.9483091Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\res\\layout\\flyoutcontent.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\res\\layout\\flyoutcontent.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.9567198Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\res\\layout\\shellcontent.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\res\\layout\\shellcontent.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.9651667Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\res\\values\\strings.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\152\\jl\\res\\values\\strings.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.9783014Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\153\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\153\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.9875614Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\153\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\153\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:38.9977367Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\153\\jl\\.net\\__res_name_case_map.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\153\\jl\\.net\\__res_name_case_map.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.0097654Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\153\\jl\\flat\\layout_tabbar.xml.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\153\\jl\\flat\\layout_tabbar.xml.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.0188025Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\153\\jl\\flat\\layout_toolbar.xml.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\153\\jl\\flat\\layout_toolbar.xml.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.0314513Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\153\\jl\\flat\\values_attrs.arsc.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\153\\jl\\flat\\values_attrs.arsc.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.0415881Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\153\\jl\\flat\\values_styles.arsc.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\153\\jl\\flat\\values_styles.arsc.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.0534312Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\153\\jl\\res\\layout\\tabbar.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\153\\jl\\res\\layout\\tabbar.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.0630833Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\153\\jl\\res\\layout\\toolbar.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\153\\jl\\res\\layout\\toolbar.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.0738611Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\153\\jl\\res\\values\\attrs.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\153\\jl\\res\\values\\attrs.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.0870147Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\153\\jl\\res\\values\\styles.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\153\\jl\\res\\values\\styles.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.1009646Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.3084909Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.3292598Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.3475593Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.3574287Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.3673547Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\flat\\values_values.arsc.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\flat\\values_values.arsc.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.3786412Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.3869010Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\154\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.4004202Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.4094195Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.4189615Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\.net\\__res_name_case_map.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\.net\\__res_name_case_map.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.4288096Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\flat\\anim_nav_default_enter_anim.xml.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\flat\\anim_nav_default_enter_anim.xml.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.4385016Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\flat\\anim_nav_default_exit_anim.xml.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\flat\\anim_nav_default_exit_anim.xml.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.4474138Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\flat\\anim_nav_default_pop_enter_anim.xml.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\flat\\anim_nav_default_pop_enter_anim.xml.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.4582805Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\flat\\anim_nav_default_pop_exit_anim.xml.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\flat\\anim_nav_default_pop_exit_anim.xml.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.4721767Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\flat\\drawable_maui_splash.xml.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\flat\\drawable_maui_splash.xml.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.4833625Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\flat\\drawable_maui_splash_image.xml.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\flat\\drawable_maui_splash_image.xml.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.4972914Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\flat\\layout_drawer_layout.xml.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\flat\\layout_drawer_layout.xml.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.5106980Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\flat\\layout_fragment_backstack.xml.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\flat\\layout_fragment_backstack.xml.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.5256495Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\flat\\layout_navigationlayout.xml.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\flat\\layout_navigationlayout.xml.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.5364116Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\flat\\values_attr.arsc.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\flat\\values_attr.arsc.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.5462468Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\flat\\values_colors.arsc.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\flat\\values_colors.arsc.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.5571306Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\flat\\values_styles.arsc.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\flat\\values_styles.arsc.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.5694452Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\res\\anim\\nav_default_enter_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\res\\anim\\nav_default_enter_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.5800077Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\res\\anim\\nav_default_exit_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\res\\anim\\nav_default_exit_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.5887943Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\res\\anim\\nav_default_pop_enter_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\res\\anim\\nav_default_pop_enter_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.5962128Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\res\\anim\\nav_default_pop_exit_anim.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\res\\anim\\nav_default_pop_exit_anim.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.6030962Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\res\\drawable\\maui_splash.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\res\\drawable\\maui_splash.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.6083241Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\res\\drawable\\maui_splash_image.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\res\\drawable\\maui_splash_image.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.6166620Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\res\\layout\\drawer_layout.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\res\\layout\\drawer_layout.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.6237476Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\res\\layout\\fragment_backstack.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\res\\layout\\fragment_backstack.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.6325934Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\res\\layout\\navigationlayout.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\res\\layout\\navigationlayout.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.6408343Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\res\\values\\attr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\res\\values\\attr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.6481250Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\res\\values\\colors.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\res\\values\\colors.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.6564846Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\res\\values\\styles.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\155\\jl\\res\\values\\styles.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.6682630Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\156\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\156\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.6769249Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\156\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\156\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.6860786Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\156\\jl\\.net\\__res_name_case_map.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\156\\jl\\.net\\__res_name_case_map.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.6963201Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\156\\jl\\flat\\xml_microsoft_maui_essentials_fileprovider_file_paths.xml.flat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\156\\jl\\flat\\xml_microsoft_maui_essentials_fileprovider_file_paths.xml.flat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.7080597Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\156\\jl\\res\\xml\\microsoft_maui_essentials_fileprovider_file_paths.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\156\\jl\\res\\xml\\microsoft_maui_essentials_fileprovider_file_paths.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.7350470Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\157\\jl\\libs\\F975D0960055A5E3.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\157\\jl\\libs\\F975D0960055A5E3.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.7528663Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\89\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\89\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.8919857Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\89\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\89\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.9022738Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\89\\jl\\proguard.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\89\\jl\\proguard.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.9036305Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\89\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\89\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.9167883Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\89\\jl\\aidl\\androidx\\versionedparcelable\\ParcelImpl.aidl","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\89\\jl\\aidl\\androidx\\versionedparcelable\\ParcelImpl.aidl","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:39.9340231Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\90\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\90\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.0018381Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\90\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\90\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.0029078Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\90\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\90\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.0180246Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\91\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\91\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.0956966Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\91\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\91\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.1166522Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\91\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\91\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.1312773Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\91\\jl\\proguard.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\91\\jl\\proguard.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.1328610Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\91\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\91\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.1435716Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\91\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\91\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.1544673Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\91\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\91\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.1691747Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\91\\jl\\flat\\91.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\91\\jl\\flat\\91.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.1767317Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\91\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\91\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.1877675Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\91\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\91\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.2010925Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.2437138Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.2547798Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.2632588Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\proguard.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\proguard.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.2645525Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.2656101Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.2744942Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.2773756Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\flat\\92.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\flat\\92.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.2827735Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.2913368Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\92\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.3021688Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.3112624Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\annotations.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\annotations.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.3320497Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.3485343Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.3584247Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\proguard.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\proguard.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.3678074Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.3788366Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.3939809Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.4066589Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\aidl\\android\\support\\v4\\os\\ResultReceiver.aidl","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\aidl\\android\\support\\v4\\os\\ResultReceiver.aidl","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.4169731Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\flat\\93.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\flat\\93.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.4218577Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.4335647Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\drawable\\notification_bg.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\drawable\\notification_bg.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.4356629Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\drawable\\notification_bg_low.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\drawable\\notification_bg_low.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.4439021Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\drawable\\notification_icon_background.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\drawable\\notification_icon_background.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.4515092Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\drawable\\notification_tile_bg.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\drawable\\notification_tile_bg.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.4579733Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\drawable-hdpi-v4\\notification_bg_low_normal.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\drawable-hdpi-v4\\notification_bg_low_normal.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.4637484Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\drawable-hdpi-v4\\notification_bg_low_pressed.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\drawable-hdpi-v4\\notification_bg_low_pressed.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.4664258Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\drawable-hdpi-v4\\notification_bg_normal.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\drawable-hdpi-v4\\notification_bg_normal.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.4719697Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\drawable-hdpi-v4\\notification_bg_normal_pressed.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\drawable-hdpi-v4\\notification_bg_normal_pressed.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.4774996Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\drawable-hdpi-v4\\notify_panel_notification_icon_bg.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\drawable-hdpi-v4\\notify_panel_notification_icon_bg.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.4847627Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\drawable-mdpi-v4\\notification_bg_low_normal.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\drawable-mdpi-v4\\notification_bg_low_normal.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.4906363Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\drawable-mdpi-v4\\notification_bg_low_pressed.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\drawable-mdpi-v4\\notification_bg_low_pressed.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.4977506Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\drawable-mdpi-v4\\notification_bg_normal.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\drawable-mdpi-v4\\notification_bg_normal.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.5040296Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\drawable-mdpi-v4\\notification_bg_normal_pressed.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\drawable-mdpi-v4\\notification_bg_normal_pressed.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.5107069Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\drawable-mdpi-v4\\notify_panel_notification_icon_bg.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\drawable-mdpi-v4\\notify_panel_notification_icon_bg.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.5217834Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\drawable-v21\\notification_action_background.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\drawable-v21\\notification_action_background.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.5304782Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\drawable-xhdpi-v4\\notification_bg_low_normal.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\drawable-xhdpi-v4\\notification_bg_low_normal.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.5372772Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\drawable-xhdpi-v4\\notification_bg_low_pressed.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\drawable-xhdpi-v4\\notification_bg_low_pressed.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.5447706Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\drawable-xhdpi-v4\\notification_bg_normal.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\drawable-xhdpi-v4\\notification_bg_normal.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.5517865Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\drawable-xhdpi-v4\\notification_bg_normal_pressed.9.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\drawable-xhdpi-v4\\notification_bg_normal_pressed.9.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.5586488Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\drawable-xhdpi-v4\\notify_panel_notification_icon_bg.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\drawable-xhdpi-v4\\notify_panel_notification_icon_bg.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.5685427Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\layout\\custom_dialog.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\layout\\custom_dialog.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.5798016Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\layout\\notification_action.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\layout\\notification_action.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.5913662Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\layout\\notification_action_tombstone.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\layout\\notification_action_tombstone.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.6009954Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\layout\\notification_template_custom_big.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\layout\\notification_template_custom_big.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.6088766Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\layout\\notification_template_icon_group.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\layout\\notification_template_icon_group.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.6163917Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\layout\\notification_template_part_chronometer.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\layout\\notification_template_part_chronometer.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.6236229Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\layout\\notification_template_part_time.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\layout\\notification_template_part_time.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.6314866Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\layout-v16\\notification_template_custom_big.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\layout-v16\\notification_template_custom_big.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.6458273Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\layout-v21\\notification_action.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\layout-v21\\notification_action.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.6588298Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\layout-v21\\notification_action_tombstone.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\layout-v21\\notification_action_tombstone.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.6716619Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\layout-v21\\notification_template_custom_big.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\layout-v21\\notification_template_custom_big.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.6805945Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\layout-v21\\notification_template_icon_group.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\layout-v21\\notification_template_icon_group.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.6896132Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\menu\\example_menu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\menu\\example_menu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.6985778Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\menu\\example_menu2.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\menu\\example_menu2.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.7096161Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.7179986Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-af\\values-af.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-af\\values-af.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.7217354Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-am\\values-am.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-am\\values-am.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.7245702Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-ar\\values-ar.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-ar\\values-ar.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.7330351Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-as\\values-as.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-as\\values-as.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.7357539Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-az\\values-az.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-az\\values-az.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.7388018Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-b+sr+Latn\\values-b+sr+Latn.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-b+sr+Latn\\values-b+sr+Latn.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.7415382Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-be\\values-be.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-be\\values-be.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.7445819Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-bg\\values-bg.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-bg\\values-bg.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.7470590Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-bn\\values-bn.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-bn\\values-bn.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.7500155Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-bs\\values-bs.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-bs\\values-bs.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.7522849Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-ca\\values-ca.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-ca\\values-ca.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.7562109Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-cs\\values-cs.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-cs\\values-cs.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.7585805Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-da\\values-da.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-da\\values-da.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.7615460Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-de\\values-de.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-de\\values-de.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.7638450Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-el\\values-el.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-el\\values-el.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.7666366Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-en-rAU\\values-en-rAU.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-en-rAU\\values-en-rAU.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.7689946Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-en-rCA\\values-en-rCA.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-en-rCA\\values-en-rCA.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.7719981Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-en-rGB\\values-en-rGB.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-en-rGB\\values-en-rGB.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.7749371Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-en-rIN\\values-en-rIN.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-en-rIN\\values-en-rIN.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.7871119Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-en-rXC\\values-en-rXC.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-en-rXC\\values-en-rXC.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.7912533Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-es\\values-es.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-es\\values-es.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.7959308Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-es-rUS\\values-es-rUS.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-es-rUS\\values-es-rUS.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.7998566Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-et\\values-et.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-et\\values-et.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.8063612Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-eu\\values-eu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-eu\\values-eu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.8104398Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-fa\\values-fa.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-fa\\values-fa.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.8149599Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-fi\\values-fi.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-fi\\values-fi.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.8187731Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-fr\\values-fr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-fr\\values-fr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.8235813Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-fr-rCA\\values-fr-rCA.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-fr-rCA\\values-fr-rCA.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.8364523Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-gl\\values-gl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-gl\\values-gl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.8411864Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-gu\\values-gu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-gu\\values-gu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.8453912Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-hi\\values-hi.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-hi\\values-hi.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.8499150Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-hr\\values-hr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-hr\\values-hr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.8540021Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-hu\\values-hu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-hu\\values-hu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.8587217Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-hy\\values-hy.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-hy\\values-hy.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.8629740Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-in\\values-in.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-in\\values-in.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.8677573Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-is\\values-is.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-is\\values-is.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.8719318Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-it\\values-it.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-it\\values-it.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.8766782Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-iw\\values-iw.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-iw\\values-iw.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.8811619Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-ja\\values-ja.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-ja\\values-ja.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.8858817Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-ka\\values-ka.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-ka\\values-ka.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.8902800Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-kk\\values-kk.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-kk\\values-kk.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.8945050Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-km\\values-km.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-km\\values-km.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.8992795Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-kn\\values-kn.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-kn\\values-kn.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.9043017Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-ko\\values-ko.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-ko\\values-ko.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.9087497Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-ky\\values-ky.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-ky\\values-ky.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.9132485Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-lo\\values-lo.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-lo\\values-lo.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.9178205Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-lt\\values-lt.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-lt\\values-lt.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.9218473Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-lv\\values-lv.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-lv\\values-lv.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.9259658Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-mk\\values-mk.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-mk\\values-mk.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.9299051Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-ml\\values-ml.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-ml\\values-ml.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.9336645Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-mn\\values-mn.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-mn\\values-mn.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.9464504Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-mr\\values-mr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-mr\\values-mr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.9503716Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-ms\\values-ms.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-ms\\values-ms.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.9627627Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-my\\values-my.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-my\\values-my.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.9666304Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-nb\\values-nb.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-nb\\values-nb.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.9706903Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-ne\\values-ne.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-ne\\values-ne.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.9740393Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-nl\\values-nl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-nl\\values-nl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.9785694Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-or\\values-or.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-or\\values-or.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.9820062Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-pa\\values-pa.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-pa\\values-pa.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.9862473Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-pl\\values-pl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-pl\\values-pl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.9898073Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-pt\\values-pt.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-pt\\values-pt.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:40.9941898Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-pt-rBR\\values-pt-rBR.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-pt-rBR\\values-pt-rBR.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.0010606Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-pt-rPT\\values-pt-rPT.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-pt-rPT\\values-pt-rPT.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.0048122Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-ro\\values-ro.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-ro\\values-ro.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.0088330Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-ru\\values-ru.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-ru\\values-ru.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.0130369Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-si\\values-si.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-si\\values-si.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.0168772Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-sk\\values-sk.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-sk\\values-sk.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.0206648Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-sl\\values-sl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-sl\\values-sl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.0241696Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-sq\\values-sq.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-sq\\values-sq.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.0282705Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-sr\\values-sr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-sr\\values-sr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.0315658Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-sv\\values-sv.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-sv\\values-sv.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.0356806Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-sw\\values-sw.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-sw\\values-sw.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.0411296Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-ta\\values-ta.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-ta\\values-ta.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.0455486Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-te\\values-te.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-te\\values-te.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.0484824Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-th\\values-th.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-th\\values-th.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.0513047Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-tl\\values-tl.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-tl\\values-tl.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.0535281Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-tr\\values-tr.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-tr\\values-tr.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.0559407Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-uk\\values-uk.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-uk\\values-uk.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.0627470Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-ur\\values-ur.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-ur\\values-ur.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.0650043Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-uz\\values-uz.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-uz\\values-uz.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.0720044Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-v16\\values-v16.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-v16\\values-v16.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.0826621Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-v21\\values-v21.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-v21\\values-v21.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.0853887Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-vi\\values-vi.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-vi\\values-vi.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.0875136Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-zh-rCN\\values-zh-rCN.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-zh-rCN\\values-zh-rCN.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.0894982Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-zh-rHK\\values-zh-rHK.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-zh-rHK\\values-zh-rHK.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.0919407Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-zh-rTW\\values-zh-rTW.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-zh-rTW\\values-zh-rTW.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.0938651Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-zu\\values-zu.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\93\\jl\\res\\values-zu\\values-zu.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.1035116Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\94\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\94\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.2058835Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\94\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\94\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.2133580Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\94\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\94\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.2244165Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\95\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\95\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.2360149Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\95\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\95\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.2437204Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\95\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\95\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.2561826Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\96\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\96\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.2813367Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\96\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\96\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.2819367Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\96\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\96\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.2871819Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\96\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\96\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.2968607Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\97\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\97\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.3613241Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\97\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\97\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.3719508Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\97\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\97\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.3798023Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\97\\jl\\proguard.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\97\\jl\\proguard.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.3835854Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\97\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\97\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.3920265Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\97\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\97\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.4024377Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\97\\jl\\flat\\97.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\97\\jl\\flat\\97.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.4086492Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\97\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\97\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.4172233Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\97\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\97\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.4282898Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\98\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\98\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.4367104Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\98\\jl\\annotations.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\98\\jl\\annotations.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.4503039Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\98\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\98\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.4604141Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\98\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\98\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.4681109Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\98\\jl\\proguard.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\98\\jl\\proguard.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.4747596Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\98\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\98\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.4831863Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\98\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\98\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.4933558Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\98\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\98\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.5019932Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\98\\jl\\flat\\98.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\98\\jl\\flat\\98.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.5072318Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\98\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\98\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.5165057Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\98\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\98\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.5286929Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\99\\jl\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\99\\jl\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.6463422Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\99\\jl\\classes.jar","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\99\\jl\\classes.jar","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.6629495Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\99\\jl\\files.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\99\\jl\\files.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.6763530Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\99\\jl\\proguard.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\99\\jl\\proguard.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.6789427Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\99\\jl\\public.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\99\\jl\\public.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.6921659Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\99\\jl\\R.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\99\\jl\\R.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.7042708Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\99\\jl\\res.zip","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\99\\jl\\res.zip","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.7161185Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\99\\jl\\flat\\99.flata","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\99\\jl\\flat\\99.flata","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.7221363Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\99\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\99\\jl\\META-INF\\com\\android\\build\\gradle\\aar-metadata.properties","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.7345973Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\99\\jl\\res\\values\\values.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\lp\\99\\jl\\res\\values\\values.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.7398804Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\res\\drawable\\aloevera.jpg","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\res\\drawable\\aloevera.jpg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.7568034Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\res\\layout\\tabbar.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\res\\layout\\tabbar.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.7681255Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\res\\layout\\toolbar.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\res\\layout\\toolbar.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.7830027Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\res\\mipmap-anydpi-v26\\icon.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\res\\mipmap-anydpi-v26\\icon.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.7862645Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\res\\mipmap-anydpi-v26\\icon_round.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\res\\mipmap-anydpi-v26\\icon_round.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.8011478Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\res\\mipmap-hdpi\\icon.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\res\\mipmap-hdpi\\icon.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.8133496Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\res\\mipmap-hdpi\\launcher_foreground.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\res\\mipmap-hdpi\\launcher_foreground.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.8281729Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\res\\mipmap-mdpi\\icon.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\res\\mipmap-mdpi\\icon.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.8390042Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\res\\mipmap-mdpi\\launcher_foreground.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\res\\mipmap-mdpi\\launcher_foreground.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.8515763Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\res\\mipmap-xhdpi\\icon.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\res\\mipmap-xhdpi\\icon.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.8626144Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\res\\mipmap-xhdpi\\launcher_foreground.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\res\\mipmap-xhdpi\\launcher_foreground.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.8763390Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\res\\mipmap-xxhdpi\\icon.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\res\\mipmap-xxhdpi\\icon.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.8897612Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\res\\mipmap-xxhdpi\\launcher_foreground.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\res\\mipmap-xxhdpi\\launcher_foreground.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.9040784Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\res\\mipmap-xxxhdpi\\icon.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\res\\mipmap-xxxhdpi\\icon.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.9172304Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\res\\mipmap-xxxhdpi\\launcher_foreground.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\res\\mipmap-xxxhdpi\\launcher_foreground.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.9317737Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\res\\values\\colors.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\res\\values\\colors.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.9435201Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\res\\values\\styles.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\res\\values\\styles.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.9586536Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\resizetizer\\f\\AmaticSC-Regular.ttf","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\resizetizer\\f\\AmaticSC-Regular.ttf","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.9736872Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\resizetizer\\f\\materialdesignicons-webfont.ttf","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\resizetizer\\f\\materialdesignicons-webfont.ttf","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.9856142Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\resizetizer\\f\\Michella-Garden.otf","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\resizetizer\\f\\Michella-Garden.otf","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.9870547Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\stamp\\_BuildLibraryImportsCache.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\stamp\\_BuildLibraryImportsCache.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.9878877Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\stamp\\_CleanIntermediateIfNeeded.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\stamp\\_CleanIntermediateIfNeeded.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.9892264Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\stamp\\_CompileToDalvik.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\stamp\\_CompileToDalvik.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.9897419Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\stamp\\_ConvertCustomView.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\stamp\\_ConvertCustomView.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.9902520Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\stamp\\_ConvertResourcesCases.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\stamp\\_ConvertResourcesCases.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.9910247Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\stamp\\_GenerateJavaStubs.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\stamp\\_GenerateJavaStubs.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.9915634Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\stamp\\_GeneratePackageManagerJava.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\stamp\\_GeneratePackageManagerJava.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:41.9920802Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net6.0-android\\stamp\\_ResolveLibraryProjectImports.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\obj\\Debug\\net6.0-android\\stamp\\_ResolveLibraryProjectImports.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:42.0058601Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\Properties\\AndroidManifest.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\Properties\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:42.0188972Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\Properties\\AssemblyInfo.cs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\Properties\\AssemblyInfo.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:42.0277236Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\Resources\\AboutResources.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\Resources\\AboutResources.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:42.0396105Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\Resources\\Resource.designer.cs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\Resources\\Resource.designer.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:42.0423806Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\Resources\\drawable\\aloevera.jpg","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\Resources\\drawable\\aloevera.jpg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:42.0505014Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\Resources\\layout\\Tabbar.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\Resources\\layout\\Tabbar.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:42.0582629Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\Resources\\layout\\Toolbar.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\Resources\\layout\\Toolbar.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:42.0658795Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\Resources\\mipmap-anydpi-v26\\icon.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\Resources\\mipmap-anydpi-v26\\icon.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:42.0678813Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\Resources\\mipmap-anydpi-v26\\icon_round.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\Resources\\mipmap-anydpi-v26\\icon_round.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:42.0701091Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\Resources\\mipmap-hdpi\\icon.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\Resources\\mipmap-hdpi\\icon.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:42.0719591Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\Resources\\mipmap-hdpi\\launcher_foreground.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\Resources\\mipmap-hdpi\\launcher_foreground.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:42.0741974Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\Resources\\mipmap-mdpi\\icon.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\Resources\\mipmap-mdpi\\icon.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:42.0761885Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\Resources\\mipmap-mdpi\\launcher_foreground.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\Resources\\mipmap-mdpi\\launcher_foreground.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:42.0786447Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\Resources\\mipmap-xhdpi\\icon.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\Resources\\mipmap-xhdpi\\icon.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:42.0804205Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\Resources\\mipmap-xhdpi\\launcher_foreground.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\Resources\\mipmap-xhdpi\\launcher_foreground.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:42.0834334Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\Resources\\mipmap-xxhdpi\\icon.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\Resources\\mipmap-xxhdpi\\icon.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:42.0855493Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\Resources\\mipmap-xxhdpi\\launcher_foreground.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\Resources\\mipmap-xxhdpi\\launcher_foreground.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:42.0881698Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\Resources\\mipmap-xxxhdpi\\icon.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\Resources\\mipmap-xxxhdpi\\icon.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:42.0904999Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\Resources\\mipmap-xxxhdpi\\launcher_foreground.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\Resources\\mipmap-xxxhdpi\\launcher_foreground.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:42.1021264Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\Resources\\values\\colors.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\Resources\\values\\colors.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:42.1121088Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\Resources\\values\\styles.xml","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.Android\\Resources\\values\\styles.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:42.1135205Z","@mt":"Project backed up to C:\\code\\PlantLady.backup\\PlantLady.Android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:42.1169632Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Back up project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:36:42.1199863Z","@mt":"Resetting upgrade step {UpgradeStep} because upgrade context has changed significantly since it was initialized","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.TryConvertProjectConverterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.TryConvertProjectConverterStep"} +{"@t":"2022-11-15T22:36:42.1200209Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Convert project file to SDK style","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:36:42.1215942Z","@mt":"Project {ProjectPath} not yet converted","@l":"Debug","ProjectPath":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.TryConvertRunner"} +{"@t":"2022-11-15T22:36:42.1409519Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:36:42.1410860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c8cba941-3f34-4ea6-84c1-185ebb6fef6f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:36:42.1417294Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c8cba941-3f34-4ea6-84c1-185ebb6fef6f\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:36:42.1418938Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:36:42.1420617Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:36:42.1462118Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:36:42.1463209Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:36:42.1719262Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:36:42.1720361Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\05517aea-4195-4e68-a3fc-fb649d5f4c34\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:36:42.1726285Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\05517aea-4195-4e68-a3fc-fb649d5f4c34\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:36:42.1728272Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:36:42.1729754Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:36:42.1770396Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:36:42.1771419Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:36:42.1781844Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Convert project file to SDK style","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:36:42.1782385Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.TryConvertProjectConverterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:36:42.1785426Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Convert project file to SDK style","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.TryConvertProjectConverterStep"} +{"@t":"2022-11-15T22:36:42.1989785Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:36:42.1990971Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\99035a6e-b1fe-42c4-9509-07665b4a27ca\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:36:42.1996669Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\99035a6e-b1fe-42c4-9509-07665b4a27ca\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:36:42.1998329Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:36:42.1999827Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:36:42.2044449Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:36:42.2045464Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:36:42.2216454Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:36:42.2217446Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\afaaed00-f301-4ecc-981b-e15608820582\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:36:42.2223104Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\afaaed00-f301-4ecc-981b-e15608820582\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:36:42.2224781Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:36:42.2226206Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:36:42.2270600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:36:42.2271660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:36:42.2283501Z","@mt":"Converting project file format with try-convert, version 0.4.355802+b2aeae2c0e41fbfed35df6ab2e88b82a0c11be2b","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.TryConvertRunner"} +{"@t":"2022-11-15T22:36:42.2424510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:36:42.2425243Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\99d54290-c075-4419-8b42-3db859b07fd6\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:36:42.2428560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\99d54290-c075-4419-8b42-3db859b07fd6\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:36:42.2429867Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:36:42.2430780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:36:42.2455931Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:36:42.2473599Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:36:42.2611972Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:36:42.2612661Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fdb47f74-1faf-4e47-b355-07ffa69b6225\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:36:42.2616757Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fdb47f74-1faf-4e47-b355-07ffa69b6225\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:36:42.2618003Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:36:42.2619078Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net10.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:36:42.2648266Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:36:42.2648900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net10.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:36:42.2671602Z","@mt":"Recommending TFM {TFM} because of dependency on project {Dependency}","TFM":"net7.0-android","Dependency":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:36:42.2709428Z","@mt":"Project {Name} is of type Xamarin.Android, migration to .NET MAUI recommends net7.0-android.","Name":"PlantLady.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:36:48.2417882Z","@mt":"Converting project {Path} to SDK style","Path":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.TryConvertInProcessTool"} +{"@t":"2022-11-15T22:36:48.9657271Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj: (0, 0): Project PlantLady is not compatible with net7.0-windows10.0.19041 (.NETCoreApp,Version=v7.0). Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:36:48.9658556Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets '.NETCoreApp,Version=v7.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:04.2600778Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:04.2601440Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:04.2601635Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:04.2601804Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:04.3743812Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:05.2148628Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets '.NETFramework,Version=v1.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:05.2152023Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:05.2738661Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets 'Xamarin.iOS,Version=v1.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:05.2743342Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:05.2792585Z","@mt":"Project file converted successfully! The project may require additional changes to build successfully against the new .NET target.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.TryConvertRunner"} +{"@t":"2022-11-15T22:37:05.2840206Z","@mt":"Restoring packages for {ProjectPath} with dotnet restore","@l":"Debug","ProjectPath":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.DotnetRestorePackageRestorer"} +{"@t":"2022-11-15T22:37:06.4878097Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":" Determining projects to restore...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:08.0529045Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj : error NU1202: Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:08.0530450Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj : error NU1202: - monoandroid10.0 (MonoAndroid,Version=v10.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:08.0530757Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj : error NU1202: - netstandard1.0 (.NETStandard,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:08.0530879Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj : error NU1202: - netstandard2.0 (.NETStandard,Version=v2.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:08.0530978Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj : error NU1202: - tizen40 (Tizen,Version=v4.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:08.0531078Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj : error NU1202: - uap10.0.16299 (UAP,Version=v10.0.16299)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:08.0531174Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj : error NU1202: - xamarinios10 (Xamarin.iOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:08.0531319Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj : error NU1202: - xamarinmac20 (Xamarin.Mac,Version=v2.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:08.0531453Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj : error NU1202: - xamarintvos10 (Xamarin.TVOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:08.0531763Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj : error NU1202: - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:08.0531883Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj : error NU1201: Project PlantLady is not compatible with net10 (.NETFramework,Version=v1.0). Project PlantLady supports:","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:08.0531982Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj : error NU1201: - net7.0-android33.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:08.0532087Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj : error NU1201: - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:08.0533935Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj : error NU1202: Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0) / win7-x86. Package Xamarin.Essentials 1.7.0 supports:","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:08.0535850Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj : error NU1202: - monoandroid10.0 (MonoAndroid,Version=v10.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:08.0536093Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj : error NU1202: - netstandard1.0 (.NETStandard,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:08.0536213Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj : error NU1202: - netstandard2.0 (.NETStandard,Version=v2.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:08.0536325Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj : error NU1202: - tizen40 (Tizen,Version=v4.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:08.0536425Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj : error NU1202: - uap10.0.16299 (UAP,Version=v10.0.16299)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:08.0536522Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj : error NU1202: - xamarinios10 (Xamarin.iOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:08.0536651Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj : error NU1202: - xamarinmac20 (Xamarin.Mac,Version=v2.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:08.0537002Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj : error NU1202: - xamarintvos10 (Xamarin.TVOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:08.0537124Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj : error NU1202: - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:08.0537235Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj : error NU1201: Project PlantLady is not compatible with net10 (.NETFramework,Version=v1.0) / win7-x86. Project PlantLady supports:","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:08.0537338Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj : error NU1201: - net7.0-android33.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:08.0537440Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj : error NU1201: - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:08.1136885Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":" Failed to restore C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj (in 450 ms).","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:08.1185330Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":" 1 of 2 projects are up-to-date for restore.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:08.2181546Z","@mt":"[{Tool}] Error: Exited with non-success code: {ExitCode}","@l":"Debug","Tool":"dotnet-restore","ExitCode":1,"SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:09.0436230Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj: (0, 0): Project PlantLady is not compatible with net7.0-windows10.0.19041 (.NETCoreApp,Version=v7.0). Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:09.0437284Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets '.NETCoreApp,Version=v7.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:24.2489261Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:24.2489940Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:24.2490159Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:24.2490318Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:24.3606089Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:25.5182077Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:25.5183584Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Project PlantLady is not compatible with net10 (.NETFramework,Version=v1.0). Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:25.5184587Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0) / win7-x86. Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:25.5185348Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Project PlantLady is not compatible with net10 (.NETFramework,Version=v1.0) / win7-x86. Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:25.5185802Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets '.NETFramework,Version=v1.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:25.5192638Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:25.6180629Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets 'Xamarin.iOS,Version=v1.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:25.6185920Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:25.6241895Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Convert project file to SDK style","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.TryConvertProjectConverterStep"} +{"@t":"2022-11-15T22:37:31.4443612Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.4444895Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3aab44f0-6281-4f73-9e67-2717e225cb28\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.4448702Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3aab44f0-6281-4f73-9e67-2717e225cb28\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.4449692Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.4474789Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.4651741Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.4654683Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.4852028Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.4853093Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f6ab6bc6-3c3a-4fd0-9735-da5c996c16ed\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.4858530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f6ab6bc6-3c3a-4fd0-9735-da5c996c16ed\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.4860036Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.4861266Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.4896014Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.4898732Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.4907542Z","@mt":"Resetting upgrade step {UpgradeStep} because upgrade context has changed significantly since it was initialized","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiPlatformTargetFrameworkUpgradeStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiPlatformTargetFrameworkUpgradeStep"} +{"@t":"2022-11-15T22:37:31.5107401Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.5108705Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\39f14533-3e4f-4e36-871d-ceddb0b0130c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.5114184Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\39f14533-3e4f-4e36-871d-ceddb0b0130c\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.5115674Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.5116919Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.5156065Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.5158826Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.5367172Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.5368198Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c4fc8384-3889-49ca-8e1f-668bf5436ab5\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.5377838Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c4fc8384-3889-49ca-8e1f-668bf5436ab5\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.5379965Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.5382001Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.5422488Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.5425198Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.5433750Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Add TargetFramework for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:37:31.5679717Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.5681076Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b7d9f2fd-4c61-4ecf-8ccc-0ac209fed494\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.5687951Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b7d9f2fd-4c61-4ecf-8ccc-0ac209fed494\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.5689501Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.5690805Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.5768089Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.5771215Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.5976052Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.5977050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5508a974-6b58-4678-95a1-b47d042650fa\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.5982736Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5508a974-6b58-4678-95a1-b47d042650fa\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.5984251Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.5985516Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.6025193Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.6028255Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.6045948Z","@mt":"TFM needs updated to {TargetTFM}","TargetTFM":"net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiPlatformTargetFrameworkUpgradeStep"} +{"@t":"2022-11-15T22:37:31.6090050Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Add TargetFramework for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:37:31.6090518Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiPlatformTargetFrameworkUpgradeStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:37:31.6103300Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Add TargetFramework for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiPlatformTargetFrameworkUpgradeStep"} +{"@t":"2022-11-15T22:37:31.6251062Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.6251736Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5bad6599-d428-4a57-b1d3-d5d3123d522a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.6254540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5bad6599-d428-4a57-b1d3-d5d3123d522a\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.6255361Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.6256097Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.6274307Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.6275746Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.6402781Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.6403452Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3a2c4988-ccb2-4f99-9016-1b14c9f42338\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.6406730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3a2c4988-ccb2-4f99-9016-1b14c9f42338\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.6407588Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.6408336Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.6429695Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.6431452Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:31.6441736Z","@mt":"TFM set to {TargetTFM}","TargetTFM":"net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiPlatformTargetFrameworkUpgradeStep"} +{"@t":"2022-11-15T22:37:31.6468408Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:37:32.3139103Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj: (0, 0): Project PlantLady is not compatible with net7.0-windows10.0.19041 (.NETCoreApp,Version=v7.0). Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:32.3140062Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets '.NETCoreApp,Version=v7.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:46.7430496Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:46.7431233Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:46.7431451Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:46.7431655Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:46.8349928Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:49.0582330Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:49.0583834Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Project PlantLady is not compatible with net10 (.NETFramework,Version=v1.0). Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:49.0584379Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0) / win7-x86. Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:49.0584847Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Project PlantLady is not compatible with net10 (.NETFramework,Version=v1.0) / win7-x86. Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:49.0585361Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\Properties\\AndroidManifest.xml: (0, 0): AndroidManifest.xml //uses-sdk/@android:targetSdkVersion '29' is less than $(TargetFrameworkVersion) ''. Using API-33 for ACW compilation.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:49.0585783Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/MainTheme.Base (aka com.companyname.plantlady:style/MainTheme.Base) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:49.0586166Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: Resources\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:49.0586556Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: Resources\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka com.companyname.plantlady:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:49.0586914Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): failed linking references.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:49.0587363Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:49.1669782Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets 'Xamarin.iOS,Version=v1.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:49.1673902Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:49.1765697Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Add TargetFramework for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiPlatformTargetFrameworkUpgradeStep"} +{"@t":"2022-11-15T22:37:55.8622074Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:55.8622979Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\63bc7d6d-0b75-49ac-8bac-a36183398f58\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:55.8624435Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:55.8632702Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:55.8633130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:55.8746224Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:55.8746913Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d051d1e0-a285-4e3e-81fb-ce591bebb4ed\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:55.8748447Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:55.8754790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:55.8755179Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:55.8885495Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:55.8886329Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\dadd9b9b-ac62-421d-882a-42971b4bb802\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:55.8888114Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:55.8896383Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:55.8896845Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:55.9072123Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:55.9073412Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e282169b-4185-40ce-b5c8-3232841a5e08\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:55.9076398Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:55.9088803Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:55.9089489Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:55.9101927Z","@mt":"Resetting upgrade step {UpgradeStep} because upgrade context has changed significantly since it was initialized","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiWorkloadUpgradeStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiWorkloadUpgradeStep"} +{"@t":"2022-11-15T22:37:55.9335775Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:55.9337543Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b4c0f834-4d91-44fd-90f6-9513b11e8d15\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:55.9340779Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:55.9355684Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:55.9356478Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:55.9608034Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:55.9609509Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\341b18ae-4dd4-4e82-971a-d7b9a7043d77\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:55.9612811Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:55.9627566Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:55.9628382Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:55.9888831Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:55.9890688Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\24d2078f-5932-469d-aea3-7e704dfc78b3\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:55.9894037Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:55.9907317Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:55.9908090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:56.0163561Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:56.0165052Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1ad497bf-1feb-4624-a56c-1d85e4f76325\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:56.0168314Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:56.0250707Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:56.0252016Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:56.0267551Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Install .NET MAUI Workload","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:37:56.0553065Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:56.0554663Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d5e1130a-bdd5-40a8-8071-63f1fe6e711d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:56.0558079Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:56.0570360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:56.0571080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:56.0810326Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:56.0811722Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d3b74f66-b9be-4ba1-ab75-d6a12a11db21\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:56.0814845Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:56.0827708Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:56.0828459Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:57.2750429Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"Installed Workload Id Manifest Version Installation Source ","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:57.2774694Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"----------------------------------------------------------------------------------------------------------------------","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:57.2791787Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"ios 16.0.1478/7.0.100 SDK 7.0.100, VS 17.5.33103.201, VS 17.5.33114.351, VS 17.4.33110.190","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:57.2805350Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"maccatalyst 15.4.2372/7.0.100 SDK 7.0.100, VS 17.5.33103.201, VS 17.5.33114.351, VS 17.4.33110.190","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:57.2825003Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"maui 7.0.49/7.0.100 SDK 7.0.100 ","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:57.2847295Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"maui-ios 7.0.49/7.0.100 SDK 7.0.100, VS 17.5.33103.201, VS 17.5.33114.351, VS 17.4.33110.190","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:57.2861834Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"maui-windows 7.0.49/7.0.100 SDK 7.0.100, VS 17.5.33103.201, VS 17.5.33114.351, VS 17.4.33110.190","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:57.2871966Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"maui-android 7.0.49/7.0.100 VS 17.5.33103.201, VS 17.5.33114.351, VS 17.4.33110.190 ","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:57.2882114Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"android 33.0.4/7.0.100 VS 17.5.33103.201, VS 17.5.33114.351, VS 17.4.33110.190 ","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:57.2895122Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"maui-maccatalyst 7.0.49/7.0.100 VS 17.5.33103.201, VS 17.5.33114.351, VS 17.4.33110.190 ","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:57.2912652Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"wasm-tools-net6 7.0.0/7.0.100 VS 17.5.33103.201 ","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:57.2927448Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"runtimes-windows 7.0.0/7.0.100 VS 17.5.33103.201 ","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:57.2938694Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"wasm-tools 7.0.0/7.0.100 VS 17.5.33114.351 ","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:57.2953104Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"Use `dotnet workload search` to find additional workloads to install.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:37:57.3246703Z","@mt":".NET MAUI workloads installed: MauiAndroid, MauiiOS","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiWorkloadUpgradeStep"} +{"@t":"2022-11-15T22:37:57.3269498Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Install .NET MAUI Workload","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:37:57.3269869Z","@mt":"Resetting upgrade step {UpgradeStep} because upgrade context has changed significantly since it was initialized","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:37:57.3270095Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Clean up NuGet package references","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:37:57.3280911Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Clean up NuGet package references","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:37:57.3281194Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:37:57.3295690Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:37:57.3296918Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:37:57.3306184Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:37:57.3306414Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:37:57.3315736Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:37:57.3316419Z","@mt":"Marking package {PackageName} for removal based on package mapping configuration {PackageMapSet}","PackageName":"Xamarin.Forms","PackageMapSet":"Xamarin Legacy Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.PackageMapReferenceAnalyzer"} +{"@t":"2022-11-15T22:37:57.3336775Z","@mt":"Marking package {PackageName} for removal based on package mapping configuration {PackageMapSet}","PackageName":"Xamarin.Essentials","PackageMapSet":"Xamarin Legacy Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.PackageMapReferenceAnalyzer"} +{"@t":"2022-11-15T22:37:57.7434503Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:37:57.7435584Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Remove package 'Xamarin.Forms'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:37:57.7479211Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Remove package 'Xamarin.Forms'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:37:57.7479794Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:37:57.7493136Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Remove package 'Xamarin.Forms'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:37:57.7523764Z","@mt":"Removing outdated package reference: {PackageReference}","PackageReference":"Xamarin.Forms, Version=5.0.0.2083","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:37:57.7535859Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Remove package 'Xamarin.Forms'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:37:57.7717271Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:57.7718570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\19bd9e1f-5ac8-4f04-b5c2-bf1d400f45b2\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:57.7721401Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:57.7731546Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:57.7732115Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:57.7921554Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:57.7922691Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c22efe31-7f82-41a8-911c-6c1c614e85b1\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:57.7924985Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:57.7935218Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:57.7935911Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:57.8194401Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:57.8196188Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\37d76266-eaf6-46ad-8d5b-e0568d288bed\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:57.8199608Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:57.8216255Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:57.8217184Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:57.8500370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:57.8502022Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\dfba9f29-14c6-4175-b424-e1385145cb42\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:57.8505444Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:57.8521415Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:57.8522383Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:57.8816735Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:57.8818628Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9db061cf-54ed-491f-ac08-d13cf7758d6a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:57.8822359Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:57.8838050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:57.8839063Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:57.9110482Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:57.9111969Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e6f78483-f663-442f-a630-8edbb05641d7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:57.9115474Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:57.9131615Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:57.9132636Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:57.9479215Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:57.9481652Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0fca67c4-23e8-4be6-a3e0-aa806b0f25f7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:57.9485921Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:57.9501112Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:57.9502029Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:57.9767962Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:57.9769105Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4efb68a0-5815-48b4-aeb9-936b71c5f0a7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:57.9777122Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:57.9804327Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:57.9804988Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:37:57.9816821Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Remove package 'Xamarin.Essentials'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:37:57.9863060Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Remove package 'Xamarin.Essentials'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:37:57.9863683Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:37:57.9866951Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Remove package 'Xamarin.Essentials'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:37:57.9896845Z","@mt":"Removing outdated package reference: {PackageReference}","PackageReference":"Xamarin.Essentials, Version=1.7.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:37:57.9909156Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Remove package 'Xamarin.Essentials'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:37:57.9921268Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:37:57.9940930Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:37:58.6353520Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj: (0, 0): Project PlantLady is not compatible with net7.0-windows10.0.19041 (.NETCoreApp,Version=v7.0). Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:37:58.6354504Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets '.NETCoreApp,Version=v7.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:38:13.9534313Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:38:13.9535012Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:38:13.9535205Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:38:13.9535368Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:38:14.0691429Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:38:15.7454438Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:38:15.7455254Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Project PlantLady is not compatible with net10 (.NETFramework,Version=v1.0). Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:38:15.7455558Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0) / win7-x86. Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:38:15.7455828Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Project PlantLady is not compatible with net10 (.NETFramework,Version=v1.0) / win7-x86. Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:38:15.7456915Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\Properties\\AndroidManifest.xml: (0, 0): AndroidManifest.xml //uses-sdk/@android:targetSdkVersion '29' is less than $(TargetFrameworkVersion) ''. Using API-33 for ACW compilation.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:38:15.7457220Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/MainTheme.Base (aka com.companyname.plantlady:style/MainTheme.Base) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:38:15.7457444Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: Resources\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:38:15.7457644Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: Resources\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka com.companyname.plantlady:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:38:15.7457844Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): failed linking references.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:38:15.7458044Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:38:15.8769879Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets 'Xamarin.iOS,Version=v1.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:38:15.8775005Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:38:15.8828753Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:38:22.3017956Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:22.3019103Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\09159b22-7a69-48ba-bb69-2bf0293bc560\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:22.3021167Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:22.3028878Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:22.3029314Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:22.3222739Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:22.3223857Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\02f1089c-591e-42cd-a98d-4b9ce90f2981\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:22.3226093Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:22.3280336Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:22.3280754Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:22.3422421Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:22.3423186Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c183a32b-882a-429b-873c-d0fffbba3291\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:22.3424644Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:22.3430769Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:22.3431101Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:22.3596663Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:22.3597435Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\577d755e-a385-440a-8d87-973fab83c0ca\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:22.3599192Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:22.3606917Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:22.3607306Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:22.3808291Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:22.3809540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7a71c69f-9aba-4d3c-9846-6c7d4b00cc46\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:22.3811838Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:22.3822758Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:22.3823333Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:22.4102579Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:22.4103987Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\88570b21-4398-4130-ad3a-9c09ae95c83e\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:22.4108723Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:22.4123799Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:22.4124623Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:22.4377792Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:22.4379456Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e905219d-10ab-4792-ac23-06f91e634614\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:22.4382918Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:22.4397916Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:22.4398711Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:22.4633832Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:22.4635253Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f47a3ea0-f93f-4348-b716-a6a9eae67fc9\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:22.4638618Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:22.4654016Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:22.4654800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:22.4669789Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:38:22.4725638Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:38:22.4728077Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:38:22.4776071Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:38:22.4776816Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:38:22.4825748Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:38:22.4857982Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3/registration5-gz-semver2/microsoft.dotnet.upgradeassistant.extensions.default.analyzers/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"} +{"@t":"2022-11-15T22:38:22.8232915Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3/registration5-gz-semver2/microsoft.dotnet.upgradeassistant.extensions.default.analyzers/index.json 337ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"} +{"@t":"2022-11-15T22:38:22.8544605Z","@mt":"Reference to .NET Upgrade Assistant analyzer package ({AnalyzerPackageName}, version {AnalyzerPackageVersion}) needs to be added","AnalyzerPackageName":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers","AnalyzerPackageVersion":"0.4.355802","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.UpgradeAssistantReferenceAnalyzer"} +{"@t":"2022-11-15T22:38:23.1712457Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:38:23.1713083Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:38:23.1738175Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:38:23.1738522Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:38:23.1745273Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:38:23.1755320Z","@mt":"Adding package reference: {PackageReference}","PackageReference":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.4.355802","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:38:23.1769591Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:38:23.1781224Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:38:23.1788797Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:38:24.2354476Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj: (0, 0): Project PlantLady is not compatible with net7.0-windows10.0.19041 (.NETCoreApp,Version=v7.0). Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:38:24.2355605Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets '.NETCoreApp,Version=v7.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:38:39.3827117Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:38:39.3827842Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:38:39.3828023Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:38:39.3828169Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:38:39.4882437Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:38:41.1332058Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:38:41.1333577Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Project PlantLady is not compatible with net10 (.NETFramework,Version=v1.0). Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:38:41.1334203Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0) / win7-x86. Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:38:41.1334749Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Project PlantLady is not compatible with net10 (.NETFramework,Version=v1.0) / win7-x86. Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:38:41.1335296Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\Properties\\AndroidManifest.xml: (0, 0): AndroidManifest.xml //uses-sdk/@android:targetSdkVersion '29' is less than $(TargetFrameworkVersion) ''. Using API-33 for ACW compilation.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:38:41.1335740Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/MainTheme.Base (aka com.companyname.plantlady:style/MainTheme.Base) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:38:41.1336227Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: Resources\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:38:41.1336660Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: Resources\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka com.companyname.plantlady:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:38:41.1337083Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): failed linking references.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:38:41.1337481Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:38:41.2767161Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets 'Xamarin.iOS,Version=v1.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:38:41.2770304Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:38:41.2875217Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:38:47.9990092Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:47.9991283Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b134712a-980c-40a5-8739-c9d299f0b50d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:47.9993581Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.0000668Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.0001072Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.0146921Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.0147751Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5c707655-a05a-4df2-b010-be6799c35c11\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.0149768Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.0158928Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.0159490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.0338327Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.0339464Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2c32fdda-c3f7-4360-922a-4a98f185cbee\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.0341638Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.0351978Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.0352574Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.0530582Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.0531612Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\39b741c3-545d-4609-9312-6ed36e22f19f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.0533840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.0543088Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.0543630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.0721947Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.0723093Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1d4c2b20-edfd-40b6-bab0-9844e89a577a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.0725259Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.0735518Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.0736079Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.0993636Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.0994765Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4a87ea61-5473-43e8-babf-0481b6980477\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.0997197Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.1007488Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.1008040Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.1191221Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.1192446Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\796b35ef-8f71-40e6-8b27-ce36a5ff9824\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.1194653Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.1204775Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.1205337Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.1380911Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.1381770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3275b645-c4df-4b5b-9c88-18296073e703\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.1383780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.1393780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.1394336Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.1404870Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:38:48.1439436Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:38:48.1439907Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:38:48.1448756Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:38:48.1449035Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:38:48.1461024Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:38:48.1461595Z","@mt":"{Project} is not a VB class library","@l":"Debug","Project":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.VisualBasic.MyDotAnalyzer"} +{"@t":"2022-11-15T22:38:48.1461822Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:38:48.1475800Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:38:48.1476039Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:38:48.1492043Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:38:48.1620008Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.1621286Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c3aa870c-b25b-401b-b079-749eaecba79e\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.1623830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.1634247Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.1634800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.1820208Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.1821300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d9979558-5365-4823-934d-a3586c45a7e4\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.1823547Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.1834388Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.1834945Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.1846173Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:38:48.1874101Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:38:48.1874646Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:38:48.1887717Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:38:48.2037814Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.2039050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\dfc29853-81bc-4db4-8237-af8fe8e32ca8\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.2041361Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.2052777Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.2053528Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.2235299Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.2236320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\35ec4d4e-92b9-4cda-8d4b-6a6207ea723c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.2238487Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.2247215Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.2247743Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.2257380Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:38:48.2282999Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:38:48.2283717Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:38:48.2310361Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:38:48.2457090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.2457890Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ab80dcaf-7be9-4cbd-874a-334712f75623\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.2459530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.2465648Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.2465995Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.2469894Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:38:48.2484270Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Clean up NuGet package references","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:38:48.2495999Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Clean up NuGet package references","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:38:48.2509051Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:38:48.2509436Z","@mt":"Resetting upgrade step {UpgradeStep} because upgrade context has changed significantly since it was initialized","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.SetTFMStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.SetTFMStep"} +{"@t":"2022-11-15T22:38:48.2509595Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Update TFM","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:38:48.2665363Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.2666233Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\db61d284-f11c-43d7-af94-b534a40bd7e6\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.2667810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.2675330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.2675656Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.2785429Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.2786067Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\be04369d-611d-4c41-b41b-e8318b813fc0\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.2787502Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.2793387Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.2793671Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.2799485Z","@mt":"Skip minimum dependency check because .NET MAUI support multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:38:48.2827816Z","@mt":"Recommending executable TFM {TFM} because the project builds to an executable","TFM":"net7.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.ExecutableTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:38:48.2838711Z","@mt":"Project {Name} is of type .NET MAUI Target:Android, migration to .NET MAUI recommends net7.0-android.","Name":"PlantLady.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:38:48.2854104Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Update TFM","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:38:48.2854440Z","@mt":"Resetting upgrade step {UpgradeStep} because upgrade context has changed significantly since it was initialized","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:38:48.2854655Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Update NuGet Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:38:48.2866792Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Update NuGet Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:38:48.2867076Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:38:48.2879808Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:38:48.2880995Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:38:48.2888808Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:38:48.2889041Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:38:48.2899111Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:38:48.2899755Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:38:48.2912215Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:38:48.2912457Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:38:48.2923428Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:38:48.2924678Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.4.355802","PackagePath":"C:\\Users\\Sweeky Satpathy\\.nuget\\packages\\Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers\\0.4.355802\\Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers.0.4.355802.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"} +{"@t":"2022-11-15T22:38:48.2927741Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers.0.4.355802","TargetFrameworks":["Any,Version=v0.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"} +{"@t":"2022-11-15T22:38:48.2928559Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.4.355802","TargetFramework":["net7.0-android"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"} +{"@t":"2022-11-15T22:38:48.2928758Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:38:48.2938147Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:38:48.2938371Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:38:48.2948630Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:38:48.2949318Z","@mt":"Reference to .NET Upgrade Assistant analyzer package ({AnalyzerPackageName}) already exists","@l":"Debug","AnalyzerPackageName":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.UpgradeAssistantReferenceAnalyzer"} +{"@t":"2022-11-15T22:38:48.2949494Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:38:48.2963835Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:38:48.2964064Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:38:48.2974158Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:38:48.2974548Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:38:48.2985737Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:38:48.2985948Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:38:48.2998268Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:38:48.2998767Z","@mt":"{Project} is not a VB class library","@l":"Debug","Project":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.VisualBasic.MyDotAnalyzer"} +{"@t":"2022-11-15T22:38:48.2998955Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:38:48.3008366Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:38:48.3008600Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:38:48.3020484Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:38:48.3135790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.3136539Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\dd2d78ce-fcf6-4d7d-835a-dc32d7afde04\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.3137858Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.3142922Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.3143197Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.3282814Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.3284003Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e84a63d1-f917-4866-a8dc-e25562873597\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.3286497Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.3296840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.3297384Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.3307401Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:38:48.3338578Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:38:48.3338896Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:38:48.3362043Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:38:48.3489165Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.3490147Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\078beb7e-bb7c-46d5-9634-895f8f5a1497\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.3491690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.3498241Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.3498612Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.3642840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.3643612Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\af1dc980-03ae-49df-993c-1fb56c7dd9ed\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.3645402Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.3653211Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.3653623Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.3661930Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:38:48.3691094Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:38:48.3691374Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:38:48.3702924Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:38:48.3834572Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.3836311Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\91e1adf2-683e-4c2c-aee2-fd9d5d5803fa\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.3838887Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.3847164Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.3847517Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.3851602Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:38:48.3867243Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Update NuGet Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:38:48.3886266Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Update NuGet Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:38:48.3913931Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:38:48.4032845Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.4033724Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\bbb26cd3-72d1-4afa-850c-86ab62ddca38\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.4035219Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.4040824Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.4041132Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.4194100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.4194958Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\aaf30d7a-a607-4f25-8b97-55e68acaf985\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.4196667Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.4202013Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.4202294Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.4209789Z","@mt":"Resetting upgrade step {UpgradeStep} because upgrade context has changed significantly since it was initialized","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep"} +{"@t":"2022-11-15T22:38:48.4210259Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Add Project Properties for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:38:48.4365438Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.4366629Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3ec92839-6bf2-4612-9a58-ceedadc6b1f6\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.4369048Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.4379089Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.4379705Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.4546197Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.4547205Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\76ca8f9b-7353-4312-9a1a-9b45119c25ed\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.4549414Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.4558874Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.4559417Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.4569649Z","@mt":".NET MAUI Project Properties need to be added.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep"} +{"@t":"2022-11-15T22:38:48.4601899Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Add Project Properties for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:38:48.4602355Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:38:48.4614867Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Add Project Properties for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep"} +{"@t":"2022-11-15T22:38:48.4814857Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.4816458Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d9bd7fd5-7a8e-4b0f-aff0-f4567f6a5326\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.4819056Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.4832703Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.4833880Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.5004316Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.5005300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ddd403ed-31ad-466b-9b23-43652dee591b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.5007522Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.5017341Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.5017944Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:38:48.5037879Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"AndroidApplication","PropertyValue":"True","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:38:48.5072813Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"AndroidResgenFile","PropertyValue":"Resources\\Resource.designer.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:38:48.5099869Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"AndroidResgenClass","PropertyValue":"Resource","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:38:48.5133049Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"MonoAndroidAssetsPrefix","PropertyValue":"Assets","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:38:48.5154771Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"AndroidUseLatestPlatformSdk","PropertyValue":"false","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:38:48.5171937Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"AndroidEnableSGenConcurrent","PropertyValue":"true","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:38:48.5187772Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"AndroidHttpClientHandlerType","PropertyValue":"Xamarin.Android.Net.AndroidClientHandler","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:38:48.5203673Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"AndroidManagedSymbols","PropertyValue":"true","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:38:48.5225305Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"AndroidUseSharedRuntime","PropertyValue":"false","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:38:48.5243605Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"MonoAndroidResourcePrefix","PropertyValue":"Resources","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:38:48.5259179Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"AndroidUseAapt2","PropertyValue":"true","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:38:48.5270400Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"AndroidManifest","PropertyValue":"Properties\\AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:38:48.5285151Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"AndroidLinkMode","PropertyValue":"None","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:38:48.5302677Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:38:49.2974490Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj: (0, 0): Project PlantLady is not compatible with net7.0-windows10.0.19041 (.NETCoreApp,Version=v7.0). Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:38:49.2975724Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets '.NETCoreApp,Version=v7.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:04.8870153Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:04.8870896Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:04.8871112Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:04.8871318Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:05.0034712Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:07.4663695Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:07.4664846Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Project PlantLady is not compatible with net10 (.NETFramework,Version=v1.0). Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:07.4665261Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0) / win7-x86. Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:07.4665645Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Project PlantLady is not compatible with net10 (.NETFramework,Version=v1.0) / win7-x86. Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:07.4666056Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\Properties\\AndroidManifest.xml: (0, 0): AndroidManifest.xml //uses-sdk/@android:targetSdkVersion '29' is less than $(TargetFrameworkVersion) ''. Using API-33 for ACW compilation.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:07.4666454Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:07.4666791Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka com.companyname.plantlady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:07.4667093Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:07.4667379Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka com.companyname.plantlady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:07.4667676Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: Resources\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:07.4667958Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: Resources\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka com.companyname.plantlady:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:07.4668284Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka com.companyname.plantlady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:07.4668618Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka com.companyname.plantlady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:07.4668923Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka com.companyname.plantlady:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:07.4669224Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:07.4669511Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka com.companyname.plantlady:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:07.4669816Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorAccent (aka com.companyname.plantlady:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:07.4670149Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka com.companyname.plantlady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:07.4670464Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka com.companyname.plantlady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:07.4670777Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka com.companyname.plantlady:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:07.4671079Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka com.companyname.plantlady:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:07.4671369Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:07.4671668Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka com.companyname.plantlady:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:07.4671953Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka com.companyname.plantlady:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:07.4672290Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka com.companyname.plantlady:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:07.4672619Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:07.5572810Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets 'Xamarin.iOS,Version=v1.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:07.5578449Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:07.5665929Z","@mt":"Added .NET MAUI Project Properties successfully","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep"} +{"@t":"2022-11-15T22:39:07.5691505Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Add Project Properties for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep"} +{"@t":"2022-11-15T22:39:13.6812598Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.6813833Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\517d230d-d8a1-42da-b591-b770c3cea8b0\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.6816352Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.6822297Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.6822651Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.6950770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.6951540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\bb9bbd52-cb4c-4e65-aed3-4093441c164a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.6953585Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.6960695Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.6961107Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.7151282Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.7152298Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\176e0ef4-b3b1-4874-9338-aef00e641c98\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.7154409Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.7161057Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.7161461Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.7331352Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.7332348Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a9fd8a8f-e4c3-4f6b-8ccb-5ad08e36c3af\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.7335023Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.7344787Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.7345435Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.7553946Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.7556241Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\70f02747-531c-4878-8ea9-ec0078fc6e67\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.7560877Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.7577475Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.7578460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.7851269Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.7852874Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\69da30c4-871a-4c58-9143-31b02dccc89f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.7857356Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.7873967Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.7875101Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.7892328Z","@mt":"Resetting upgrade step {UpgradeStep} because upgrade context has changed significantly since it was initialized","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:39:13.8167096Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.8169330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\11d1c774-8849-449d-804c-d2b397767d89\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.8174261Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.8190961Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.8191919Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.8473132Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.8474656Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6101f0ac-fcf8-4c7d-b120-9f9496e3c476\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.8478640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.8493408Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.8494304Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.8773654Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.8775607Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e92d9fce-5d34-417f-97b2-c66e9549b1ef\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.8779921Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.8794682Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.8795714Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.9071834Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.9075224Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f1741b70-7329-45dc-9a80-aa8faac75aeb\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.9079533Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.9094318Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.9095375Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.9464764Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.9466755Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\60b0a337-bd6b-4a1d-af8c-02adfe0922e7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.9471152Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.9486006Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.9486916Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.9778057Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.9780128Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2cb40c65-8017-4fdc-82b5-248054c8552c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.9784773Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.9801280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.9802231Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:13.9821009Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Add template files","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:39:14.0158069Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:14.0160041Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3467d986-5115-488c-ad27-5283c4bf45d3\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:14.0164251Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:14.0179084Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:14.0180036Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:14.0476018Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:14.0477500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4a611086-ca54-4b99-bcd9-f786c799fdb8\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:14.0481669Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:14.0496570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:14.0497517Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:14.0792742Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:14.0794191Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\820a3add-8e5a-49cd-b3b9-a21014d25a12\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:14.0797920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:14.0812699Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:14.0813654Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:14.1096176Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:14.1097769Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ff7f4cc0-28fe-4b5b-bcc8-9ab511684dbd\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:14.1101889Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:14.1116752Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:14.1117758Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:14.1416379Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:14.1417901Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f7355c04-872a-4b31-9d2a-e1d23942b484\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:14.1421823Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:14.1437632Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:14.1438587Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:14.1734309Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:14.1735854Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e8f35277-c78f-4830-adaa-4d146e492882\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:14.1740420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:14.1755661Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:14.1756842Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:39:14.1880477Z","@mt":"{FilesNeededCount} expected template items needed","FilesNeededCount":1,"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:39:14.1934350Z","@mt":"Needed items: {NeededFiles}","@l":"Debug","NeededFiles":"MainApplication.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:39:14.1936537Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Add template files","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:39:14.1937144Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:39:14.1954742Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Add template files","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:39:14.2005304Z","@mt":"Resolved project property {PropertyKey} to {PropertyValue}","@l":"Debug","PropertyKey":"RootNamespace","PropertyValue":"PlantLady.Android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:39:14.2028732Z","@mt":"Added template file MainApplication.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:39:15.0322791Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj: (0, 0): Project PlantLady is not compatible with net7.0-windows10.0.19041 (.NETCoreApp,Version=v7.0). Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:15.0324043Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets '.NETCoreApp,Version=v7.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:37.2482016Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:37.2483266Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:37.2483837Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:37.2484185Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:37.4124985Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:39.7816318Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:39.7817441Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Project PlantLady is not compatible with net10 (.NETFramework,Version=v1.0). Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:39.7817938Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0) / win7-x86. Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:39.7818422Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Project PlantLady is not compatible with net10 (.NETFramework,Version=v1.0) / win7-x86. Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:39.7818783Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\Properties\\AndroidManifest.xml: (0, 0): AndroidManifest.xml //uses-sdk/@android:targetSdkVersion '29' is less than $(TargetFrameworkVersion) ''. Using API-33 for ACW compilation.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:39.7819079Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:39.7819363Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka com.companyname.plantlady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:39.7819642Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:39.7819912Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka com.companyname.plantlady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:39.7820236Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: Resources\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:39.7820528Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: Resources\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka com.companyname.plantlady:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:39.7820810Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka com.companyname.plantlady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:39.7821100Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka com.companyname.plantlady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:39.7821375Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka com.companyname.plantlady:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:39.7821660Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:39.7821940Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka com.companyname.plantlady:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:39.7822247Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorAccent (aka com.companyname.plantlady:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:39.7822552Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka com.companyname.plantlady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:39.7822827Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka com.companyname.plantlady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:39.7823108Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka com.companyname.plantlady:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:39.7823387Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka com.companyname.plantlady:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:39.7823653Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:39.7823928Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka com.companyname.plantlady:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:39.7824238Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka com.companyname.plantlady:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:39.7824534Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka com.companyname.plantlady:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:39.7824827Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:39.8968356Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets 'Xamarin.iOS,Version=v1.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:39.8974053Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:41.8293947Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:39:42.3741091Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj: (0, 0): Project PlantLady is not compatible with net7.0-windows10.0.19041 (.NETCoreApp,Version=v7.0). Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:39:42.3742158Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets '.NETCoreApp,Version=v7.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:40:08.2083609Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:40:08.2084857Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:40:08.2085287Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:40:08.2085605Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:40:08.3707675Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:40:11.2210777Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:40:11.2212713Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Project PlantLady is not compatible with net10 (.NETFramework,Version=v1.0). Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:40:11.2213443Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0) / win7-x86. Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:40:11.2214014Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Project PlantLady is not compatible with net10 (.NETFramework,Version=v1.0) / win7-x86. Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:40:11.2214459Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\Properties\\AndroidManifest.xml: (0, 0): AndroidManifest.xml //uses-sdk/@android:targetSdkVersion '29' is less than $(TargetFrameworkVersion) ''. Using API-33 for ACW compilation.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:40:11.2214849Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:40:11.2215254Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka com.companyname.plantlady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:40:11.2215636Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:40:11.2216495Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka com.companyname.plantlady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:40:11.2217670Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: Resources\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:40:11.2218319Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: Resources\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka com.companyname.plantlady:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:40:11.2218848Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka com.companyname.plantlady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:40:11.2219255Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka com.companyname.plantlady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:40:11.2219676Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka com.companyname.plantlady:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:40:11.2220073Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:40:11.2220522Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka com.companyname.plantlady:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:40:11.2220962Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorAccent (aka com.companyname.plantlady:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:40:11.2221367Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka com.companyname.plantlady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:40:11.2221745Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka com.companyname.plantlady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:40:11.2222133Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka com.companyname.plantlady:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:40:11.2222511Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka com.companyname.plantlady:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:40:11.2222902Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:40:11.2223336Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka com.companyname.plantlady:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:40:11.2223743Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka com.companyname.plantlady:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:40:11.2224139Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka com.companyname.plantlady:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:40:11.2224524Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:40:11.3690744Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets 'Xamarin.iOS,Version=v1.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:40:11.3698541Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:40:11.3753279Z","@mt":"{ItemCount} template items added","ItemCount":1,"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:40:11.3780519Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Add template files","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:40:22.8375497Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:22.8377012Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e1ab4a36-56f1-4c03-a3d0-d2ad7eff4825\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:22.8380549Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:22.8390508Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:22.8391116Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:22.8600350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:22.8601562Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8e1d8374-517d-4086-b61f-4a1f5b312089\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:22.8604755Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:22.8614381Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:22.8614981Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:22.8845218Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:22.8846791Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d6c2fa41-0755-4ad8-bce6-6710577eb9f5\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:22.8851091Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:22.8863392Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:22.8864251Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:22.9122133Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:22.9123687Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\475e94a0-9455-40eb-8531-55eda985e014\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:22.9127760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:22.9139927Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:22.9140692Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:22.9395089Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:22.9396597Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\153df7ff-3707-416d-b5e3-09e727090dde\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:22.9400732Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:22.9417088Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:22.9418000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:22.9773848Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:22.9775496Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fcfbf9b7-96a2-4f50-898d-56ca8972731d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:22.9779726Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:22.9794345Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:22.9795162Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.0056648Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.0058141Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\eef8a385-ec3c-41ed-8637-d25b3436a09d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.0062279Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.0074404Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.0075150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.0324520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.0326324Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ed8a3a08-b14e-4a40-803a-35bde72bdb3f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.0330257Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.0343182Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.0343982Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.0357119Z","@mt":"Resetting upgrade step {UpgradeStep} because upgrade context has changed significantly since it was initialized","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.XamlNamespaceUpgradeStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.XamlNamespaceUpgradeStep"} +{"@t":"2022-11-15T22:40:23.0603712Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.0605302Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\eb08e1af-6327-4d01-aafd-25ac62104dc6\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.0609590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.0622591Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.0623386Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.0823420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.0824868Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\90e09899-5794-4c86-9d7a-0f4af388a055\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.0828822Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.0841169Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.0841924Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.1048872Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.1050346Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5fcad47a-8faf-431a-b4ce-66f5d26f4103\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.1054407Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.1066567Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.1067309Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.1285516Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.1286998Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\08348aac-a145-42c8-9082-d9d76455e7c6\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.1290913Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.1302993Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.1303741Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.1538963Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.1540429Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9a47f036-f93d-4b31-9c3b-d86b931079a9\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.1544632Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.1556878Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.1557630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.1827755Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.1829629Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\03d0cf64-943d-461b-bcc5-4ca4d89528a7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.1833959Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.1848889Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.1849802Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.2065347Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.2066808Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a0704bb7-ef05-49c2-a875-bdddc8b76f3b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.2070740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.2082804Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.2083548Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.2312429Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.2313901Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5e92ea73-eeb0-487c-96f2-fc3ce96a2d8c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.2317942Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.2329812Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.2330551Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.2343299Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Update XAML Namespaces","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:40:23.2379187Z","@mt":".NET MAUI project does not contain any XAML files","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.XamlNamespaceUpgradeStep"} +{"@t":"2022-11-15T22:40:23.2403111Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Update XAML Namespaces","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:40:23.2403980Z","@mt":"Resetting upgrade step {UpgradeStep} because upgrade context has changed significantly since it was initialized","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Extensions.WCFUpdater.WCFUpdateStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.WCFUpdater.WCFUpdateStep"} +{"@t":"2022-11-15T22:40:23.2404475Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Update WCF service to CoreWCF (Preview)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:40:23.2647759Z","@mt":"Can not find .cs file with Main() method. The project is not applicable for automated WCF update. No more work needs to be done and this step is complete.","@l":"Warning","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.WCFUpdater.WCFUpdateStep"} +{"@t":"2022-11-15T22:40:23.2673674Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Update WCF service to CoreWCF (Preview)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:40:23.3034371Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.3036891Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\94c7a7f7-c8aa-4917-bf1c-7bb2a9926563\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.3041217Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.3054069Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.3054836Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.3316219Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.3317817Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f4da29ff-9b54-4145-8c48-85f4bcc27a80\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.3322229Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.3334699Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.3335521Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.3592305Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.3594077Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b9b7b1ef-174d-4a32-86b7-0499e9883e4a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.3598903Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.3618479Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.3619607Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.3856614Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.3858099Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a2593e67-1414-4864-adc1-c28550eb6a0a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.3862521Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.3877962Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.3878726Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.4100244Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.4101651Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2df4d864-4cae-4f2d-bdb1-1545f10e99e2\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.4105659Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.4117436Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.4118197Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.4297106Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.4298224Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6cf58c37-7893-48d8-ac6d-c93023aa1cb4\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.4300584Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.4307889Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.4308324Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.4437112Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.4437863Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e76509c2-9d76-4c1d-b0bb-a44f0a7a9a51\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.4440051Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.4446173Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.4446487Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.4559137Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.4559907Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\549149a3-43ff-455f-bee5-e031ca1695fd\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.4561634Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.4566951Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.4567272Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.4699560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.4700294Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d783ce0a-76e4-41ab-bd8f-1d9a42fd8eea\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.4702239Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.4707319Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.4707618Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.4820375Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.4821079Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1a0bf5cc-94f4-49eb-bc75-b18cf2d625a7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.4823306Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.4831045Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.4831457Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.4938263Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.4938907Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8578f91b-ebcb-4d4f-9a58-db927b850a69\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.4940730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.4945782Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.4946108Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.5051136Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.5051764Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\169d0733-9d1f-4abe-bb91-058360bcf762\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.5053519Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.5058600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.5058905Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.5173467Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.5174079Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\bebbcae0-d76b-4104-9cc7-b276b3a98b83\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.5175990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.5181054Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.5181364Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.5294270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.5294946Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8acacf82-20e1-48d1-82de-66e942c5060c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.5296792Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.5301856Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.5302177Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.7259706Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.7260351Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\75fa8bd3-2f5e-46e8-bf3e-6a8459471d25\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.7262234Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.7267334Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.7267632Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.7398936Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.7399715Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7e639a0d-458d-436c-8def-53de440d0297\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.7401997Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.7409792Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.7410195Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.7421137Z","@mt":"Resetting upgrade step {UpgradeStep} because upgrade context has changed significantly since it was initialized","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.CodeFixerStep:UA0002","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:40:23.7421521Z","@mt":"Resetting upgrade step {UpgradeStep} because upgrade context has changed significantly since it was initialized","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:40:23.7421875Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Update source code","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:40:23.7437210Z","@mt":"Opening project {ProjectPath}","@l":"Debug","ProjectPath":"C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:40:23.7437550Z","@mt":"Running analyzers on {ProjectName}","ProjectName":"PlantLady.Android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.RoslynDiagnosticProvider"} +{"@t":"2022-11-15T22:40:23.7566142Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.7567299Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f7bdd0c0-d4fc-425c-8c4f-b46bda43dca6\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.7569174Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.7574424Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.7574722Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.7692029Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.7692803Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e5b9fbc8-a232-4ad4-bfea-1169f55b1db4\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.7694961Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.7701623Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.7702057Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.7848184Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.7849056Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f5f712d8-c454-4ff6-9165-a39623c00b3b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.7851662Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.7859214Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.7859645Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.8034535Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.8035857Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c802d009-9459-4cd2-95a1-862e0905a7da\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.8040269Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.8057136Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.8057986Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.8268114Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.8269290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d0fa6136-73eb-4f54-8e7c-3ce674273974\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.8272898Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.8287425Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.8288306Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.8502963Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.8504586Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ba7a9604-5bf0-4349-98e9-b0041235cadc\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.8508981Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.8524672Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.8525495Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.8761468Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.8762885Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9d827668-9022-42e0-bfa9-f46e29838f37\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.8766702Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.8782614Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.8783561Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.9058871Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.9060237Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5efa23ba-78dc-4ccc-8936-9afe87a9dd3d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.9063644Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.9074398Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.9075121Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.9285695Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.9286655Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3278a45e-3370-4eaf-b213-ee9a07b2a5a9\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.9289289Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.9297040Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.9297514Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.9429185Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.9429879Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d8b784d1-100e-48f6-bf36-e1bc1adf5c9f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.9431818Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.9437230Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.9437558Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.9560860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.9561586Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6be1c302-64d1-4904-ae20-30f4395f2310\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.9563620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.9569412Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.9569776Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.9681863Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.9682556Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a4ab39d8-9118-44ac-b8af-26c926d0294f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.9684433Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.9689425Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.9689716Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.9792544Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.9793224Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1a0b6677-1e9f-45be-8e10-6e7958f7efdc\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.9795114Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.9800154Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.9800464Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.9893723Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.9894341Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d9c6a263-d486-475f-a7cd-616e015f6eb5\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.9896162Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.9901131Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:23.9901452Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0000767Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0001383Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2d02d359-e371-4371-9784-fa274da240ce\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0003210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0026806Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0027349Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0125748Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0126332Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\07f75ef3-8a7e-4a63-a554-4618697704c7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0128057Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0132843Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0133139Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0237896Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0238546Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b7eed7db-5ef8-445a-88fd-ca5fde990c83\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0240444Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0246151Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0246464Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0349385Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0350050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\82350476-bfa3-42d8-8c26-c6db3c15a0e6\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0351911Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0356920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0357229Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0461174Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0461787Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1dfc79b2-4ac5-4b87-8b3d-7aa0e17344ef\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0463604Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0468428Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0468717Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0568826Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0569463Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a4c9b3ae-8e3f-4982-97f5-41adb0d7d012\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0571894Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0576865Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0577159Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0682311Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0682942Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\43121753-66a4-4f35-b657-8369d7543380\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0684736Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0689544Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0689841Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0797992Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0798627Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\df70ec15-db52-42ae-adef-25f4204db58d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0800718Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0809056Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0809393Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0951025Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0952282Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\365cf028-6eae-48ad-9f55-140d8c3e7c12\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0955489Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0983012Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.0983752Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.1121347Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.1122382Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fa6d928b-b48e-4061-871c-cd51f0db6535\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.1124922Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.1132099Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.1132538Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.1281502Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.1282510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\350b0518-23b5-41c7-8c5c-f12453cbe5d3\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.1285272Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.1292605Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.1293037Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.1430414Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.1431410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b1aeb389-1326-402d-9709-eccc60b56dfa\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.1434494Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.1441805Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.1442259Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.1595981Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.1596845Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3553a55c-8628-45ba-9d09-972cb38956a9\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.1599327Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.1606324Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.1606752Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.1762632Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.1763507Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\01d4b080-03a4-4461-8f0e-424ceea96880\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.1766026Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.1772890Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.1773370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.1932847Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.1933718Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\89a0f50b-ba19-4ce1-93e2-096e74624d9d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.1936748Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.1943705Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.1944148Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.2092345Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.2093177Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\116743b1-3fc6-42d8-a51e-ecda376a1f64\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.2095569Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.2102331Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.2102749Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.2236748Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.2237474Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d2d2f8e4-8f96-437d-a92a-03c4470d8fdc\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.2239597Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.2260902Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.2261468Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.2374212Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.2374847Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\28b13fdc-f81c-42f4-b289-da16953d9e00\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.2376676Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.2381549Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.2381840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:40:24.5460651Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-11-15T22:40:24.5483835Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-11-15T22:40:24.5494036Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-11-15T22:40:24.5512494Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-11-15T22:40:24.5537908Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-11-15T22:40:24.5556570Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-11-15T22:40:24.5591855Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-11-15T22:40:24.6317327Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-11-15T22:40:24.6331336Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-11-15T22:40:24.6337762Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-11-15T22:40:24.6349987Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-11-15T22:40:24.6369011Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-11-15T22:40:24.6383765Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-11-15T22:41:10.2868865Z","@mt":"Identified {DiagnosticCount} diagnostics in project {ProjectName}","DiagnosticCount":0,"ProjectName":"PlantLady.Android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.RoslynDiagnosticProvider"} +{"@t":"2022-11-15T22:41:10.2897419Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0001","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:41:10.2897841Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0002","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:41:10.2898019Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0005","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:41:10.2898169Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0006","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:41:10.2898318Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0007","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:41:10.2898463Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0008","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:41:10.2898605Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0010","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:41:10.2898755Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0012","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:41:10.2898956Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0014","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:41:10.2899128Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0015","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:41:10.2899347Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"[UA306_A1, UA306_A2, UA306_A3, UA306_A4, UA306_B, UA306_C, UA306_D, UA306_E, UA306_F, UA306_G, UA306_H, UA306_I]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:41:10.2899508Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA307","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:41:10.2899661Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA309","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:41:10.2899810Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA310","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:41:10.2899951Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA311","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:41:10.2900099Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA312","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:41:10.2900258Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"[UA313, UA314]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:41:10.2900411Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"[UA315_A, UA315_C, UA315_B]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:41:10.2901222Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Update source code","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:41:10.3055305Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.3055977Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f34ac2b0-df80-4b66-9782-1a02664e3b72\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.3057878Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.3063920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.3064256Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.3191715Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.3192486Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4764ac89-6ad0-4622-86c0-5430853c0c7c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.3194277Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.3200142Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.3200471Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.3343083Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.3344220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\67317455-321f-4a7a-ad8f-5863b7aee1cf\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.3346909Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.3357152Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.3357739Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.3535418Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.3536403Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2ead1f11-8e8d-4e16-8e15-4ea378e45e9f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.3539112Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.3550046Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.3550761Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.3749581Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.3750848Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6f078c34-bd53-4b39-86cd-e99c950319b2\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.3753766Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.3764933Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.3765547Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.3996445Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.3997932Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\70db75ba-5b62-4735-b9e5-bb827c878d93\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.4002484Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.4017832Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.4018783Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.4294276Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.4296210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0d2a1fd4-8dc0-4f07-aade-a67302a08484\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.4300398Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.4316582Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.4317587Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.4577451Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.4578895Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1f85f152-3ace-4413-98af-f1d6d11e62c5\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.4582962Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.4730147Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.4731540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.5039683Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.5041373Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c33ee830-411e-46c6-860f-a0928196bd42\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.5046649Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.5064782Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.5065755Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.5339049Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.5340539Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a0daeaa2-143c-4cd0-a7af-26cade4766a5\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.5344865Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.5360242Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.5361198Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.5647078Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.5648798Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a0d2a1bd-b907-4857-8f4d-254e07482244\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.5653087Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.5669856Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.5670804Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.5941632Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.5943160Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b037c70b-558e-4486-8147-ca490fb13292\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.5947237Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.5964934Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.5965973Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.6273940Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.6275935Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8f777ad0-10b2-4f9f-be99-f52b083f8d3d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.6280178Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.6296959Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.6297922Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.6570723Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.6572151Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f8947625-dccc-499b-b6d3-d2a035bf8da3\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.6576186Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.6592542Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.6593469Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.6889024Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.6891284Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\24fdb52c-e6f3-49b7-ae64-3c7831e5213a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.6895986Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.6913022Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.6913988Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.7277418Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.7278243Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ccdb8aa4-1fb9-43db-baab-7d9c10594fbd\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.7280223Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.7286868Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.7287229Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.7412066Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.7412824Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3cbd0dc5-a511-4931-83ce-046699f02f04\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.7414549Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.7420100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.7420427Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.7541295Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.7541940Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3f6b3853-0dff-4141-83f1-8b103fb5d018\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.7543686Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.7549856Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.7550247Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.7673588Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.7674360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\46fdd62c-04b3-4a8c-950c-148814818108\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.7676122Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.7682292Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.7682641Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.7806511Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.7807231Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e87a0cbd-4c7f-4915-9a0f-8f764d67de2b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.7809386Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.7816506Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.7816895Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.7958267Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.7959309Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a43a0977-610d-47fc-a903-3fa3db6ee360\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.7962038Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.7969517Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.7969980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.8124193Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.8124879Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c0f23900-6ec2-4f0a-a060-29037b861099\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.8126847Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.8134559Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.8134996Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.8265114Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.8265755Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\da4beedf-5f69-4b6b-b83b-ee21768db27f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.8267263Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.8272564Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.8272863Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.8466317Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.8467012Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2085ce90-fb25-4b97-99e6-58f94648b958\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.8468701Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.8473765Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.8474075Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.8621522Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.8622244Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7cf46ea6-d5bd-4980-a67f-d81e3f55c76b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.8623968Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.8630073Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.8630444Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.8797835Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.8798672Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d41f5db7-1583-45e5-a9f2-604efcdc7c74\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.8800628Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.8807120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.8807508Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.8953105Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.8953886Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7f6d7fcd-9208-43ee-b9a1-099ad3c0d23a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.8956223Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.8965180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.8965640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.9107567Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.9108379Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6d7251a6-2072-49fe-8c43-8d8ab670a9f6\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.9110465Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.9119218Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.9119618Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.9243438Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.9244246Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2a363ccb-0293-4088-868e-5831be33ef88\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.9246439Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.9256293Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.9256725Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.9372469Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.9373214Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\afb80d4d-596e-45b6-b874-c60157866a6c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.9375286Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.9384671Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.9385091Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.9514041Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.9514987Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\78964a7f-d8f2-451d-bc56-332ffc55f98b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.9517567Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.9529182Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.9529756Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.9709835Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.9710811Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\af0f7830-ff3d-4151-99c5-028796acc0e3\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.9713728Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.9722459Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.9722950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:10.9733567Z","@mt":"Resetting upgrade step {UpgradeStep} because upgrade context has changed significantly since it was initialized","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep"} +{"@t":"2022-11-15T22:41:10.9734036Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Move to next project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:41:10.9768071Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Move to next project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:41:10.9768526Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:41:10.9779680Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Move to next project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep"} +{"@t":"2022-11-15T22:41:10.9812889Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Move to next project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep"} +{"@t":"2022-11-15T22:41:11.1632243Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.1633353Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c21a0ad1-389a-4841-981f-53cf6740062b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.1637249Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c21a0ad1-389a-4841-981f-53cf6740062b\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.1638258Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.2028769Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.3297468Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.3300771Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.3472444Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.3473033Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6e05124b-22d9-41b9-980d-822c2a099edf\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.3476199Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6e05124b-22d9-41b9-980d-822c2a099edf\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.3477092Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.3480967Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.3692093Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.3698154Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.3716992Z","@mt":"Skip minimum dependency check because Windows App SDK cannot work with targets lower than already recommended TFM.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:41:11.3756403Z","@mt":"Recommending Windows TFM {TFM} because the project either has Windows-specific dependencies or builds to a WinExe","TFM":"net7.0-windows10.0.19041","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsSdkTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:41:11.3891275Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.3891927Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4291477b-9eb5-4013-887d-770481102cb4\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.3893483Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.3898944Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.3899251Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.4047154Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.4047779Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\752db089-19f5-4c46-88de-e06689880402\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.4049397Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.4054467Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.4054822Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.4061430Z","@mt":"Skip minimum dependency check because .NET MAUI support multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:41:11.4084517Z","@mt":"Recommending executable TFM {TFM} because the project builds to an executable","TFM":"net7.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.ExecutableTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:41:11.4094248Z","@mt":"Project {Name} is of type .NET MAUI Target:Android, migration to .NET MAUI recommends net7.0-android.","Name":"PlantLady.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:41:11.4108981Z","@mt":"Project {Name} is of type .NET MAUI Target: MAUI head, migration to .NET MAUI requires to be multiplatform","Name":"PlantLady.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:41:11.4126996Z","@mt":"Resetting upgrade step {UpgradeStep} because upgrade context has changed significantly since it was initialized","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep"} +{"@t":"2022-11-15T22:41:11.4246390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.4247391Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d342d3c0-7a37-4f62-94db-d289c546241b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.4251187Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d342d3c0-7a37-4f62-94db-d289c546241b\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.4252293Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.4257194Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.4434266Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.4440117Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.4630754Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.4632203Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0f22e554-afe2-464c-9204-c2040fa19bc3\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.4640174Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0f22e554-afe2-464c-9204-c2040fa19bc3\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.4642480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.4652480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.5026794Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.5036684Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.5067163Z","@mt":"Skip minimum dependency check because Windows App SDK cannot work with targets lower than already recommended TFM.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:41:11.5113730Z","@mt":"Recommending Windows TFM {TFM} because the project either has Windows-specific dependencies or builds to a WinExe","TFM":"net7.0-windows10.0.19041","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsSdkTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:41:11.5338938Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.5340158Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\da91a2a3-6b2f-410b-92e1-e2d7b33c6827\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.5343528Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.5354362Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.5355142Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.5567282Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.5568622Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ac206c6e-028b-4fb1-92a1-5c6609f88ae9\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.5572158Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.5584245Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.5585022Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.5597518Z","@mt":"Skip minimum dependency check because .NET MAUI support multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:41:11.5642746Z","@mt":"Recommending executable TFM {TFM} because the project builds to an executable","TFM":"net7.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.ExecutableTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:41:11.5692619Z","@mt":"Project {Name} is of type .NET MAUI Target:Android, migration to .NET MAUI recommends net7.0-android.","Name":"PlantLady.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:41:11.5742156Z","@mt":"Project {Name} is of type .NET MAUI Target: MAUI head, migration to .NET MAUI requires to be multiplatform","Name":"PlantLady.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:41:11.5875282Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.5876531Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b43eee8f-084c-4d5c-adb8-4b0210cdaeee\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.5882736Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b43eee8f-084c-4d5c-adb8-4b0210cdaeee\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.5884462Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.5891805Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.6133214Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.6141293Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.6346246Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.6347289Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5209a0fd-f8ae-46b8-b95b-33cfe228fd2d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.6353276Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5209a0fd-f8ae-46b8-b95b-33cfe228fd2d\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.6354981Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.6362439Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.6597495Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.6603790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.6622820Z","@mt":"Skip minimum dependency check because Windows App SDK cannot work with targets lower than already recommended TFM.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:41:11.6652316Z","@mt":"Recommending Windows TFM {TFM} because the project either has Windows-specific dependencies or builds to a WinExe","TFM":"net7.0-windows10.0.19041","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsSdkTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:41:11.6847531Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.6848725Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\293a489b-c11a-4b4a-8b1b-ebe410a93b10\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.6851961Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.6863229Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.6863921Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.7082579Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.7083742Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4dc4c345-e925-451f-84a6-d60411df62c7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.7086629Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.7096295Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.7096885Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.7108131Z","@mt":"Skip minimum dependency check because .NET MAUI support multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:41:11.7136171Z","@mt":"Recommending executable TFM {TFM} because the project builds to an executable","TFM":"net7.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.ExecutableTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:41:11.7159791Z","@mt":"Project {Name} is of type .NET MAUI Target:Android, migration to .NET MAUI recommends net7.0-android.","Name":"PlantLady.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:41:11.7178183Z","@mt":"Project {Name} is of type .NET MAUI Target: MAUI head, migration to .NET MAUI requires to be multiplatform","Name":"PlantLady.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:41:11.7195891Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Select project to upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:41:11.7339448Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.7340341Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4612d737-fa7d-4c8b-812c-ea9855cbb268\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.7341847Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.7350501Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.7350902Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.7351481Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.7351683Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.7468733Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.7469336Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\53579b4e-c327-40f9-ab32-b131715e908b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.7470745Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.7479834Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.7480135Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.7480656Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.7480848Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.7487297Z","@mt":"Skip minimum dependency check because .NET MAUI support multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:41:11.7507934Z","@mt":"Project {Name} is of type .NET MAUI Target:Android, migration to .NET MAUI recommends net7.0-android.","Name":"PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:41:11.7525341Z","@mt":"Project {Name} is of type .NET MAUI Target:iOS, migration to .NET MAUI recommends net7.0-ios.","Name":"PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:41:11.7539129Z","@mt":"Could not merge incoming TFM update from {Current} to {Next}","@l":"Warning","Current":"net7.0-android","Next":"net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.TargetFrameworkSelector"} +{"@t":"2022-11-15T22:41:11.7665439Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.7666350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b418f9b1-84d5-442e-9e3d-54e04a5f5076\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.7669875Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b418f9b1-84d5-442e-9e3d-54e04a5f5076\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.7670895Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.7675209Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.7812567Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.7816433Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.7944943Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.7945635Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0901efa2-ae25-4904-b10d-0a9360734e38\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.7949198Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0901efa2-ae25-4904-b10d-0a9360734e38\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.7950218Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.7954545Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.8103537Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.8107265Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.8119079Z","@mt":"Skip minimum dependency check because Windows App SDK cannot work with targets lower than already recommended TFM.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:41:11.8139190Z","@mt":"Recommending Windows TFM {TFM} because the project either has Windows-specific dependencies or builds to a WinExe","TFM":"net7.0-windows10.0.19041","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsSdkTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:41:11.8271731Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.8272412Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2e894532-3c70-4e81-96ef-5a58bfcc8db2\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.8274054Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.8279643Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.8279953Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.8397234Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.8397854Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5c6c876c-d42a-4554-bd5c-28de58db8350\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.8399658Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.8424245Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.8424757Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.8432040Z","@mt":"Skip minimum dependency check because .NET MAUI support multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:41:11.8453357Z","@mt":"Recommending executable TFM {TFM} because the project builds to an executable","TFM":"net7.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.ExecutableTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:41:11.8474395Z","@mt":"Project {Name} is of type .NET MAUI Target:Android, migration to .NET MAUI recommends net7.0-android.","Name":"PlantLady.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:41:11.8486579Z","@mt":"Project {Name} is of type .NET MAUI Target: MAUI head, migration to .NET MAUI requires to be multiplatform","Name":"PlantLady.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:41:11.9137484Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.9138888Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f3355610-f6fd-4fea-b795-ca7303f29cce\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.9144667Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f3355610-f6fd-4fea-b795-ca7303f29cce\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.9146810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.9183755Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.9536118Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.9539573Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.9727186Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.9728216Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ccdeeb38-4dcd-4a90-bc0f-9ef0f6a638d8\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.9734325Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ccdeeb38-4dcd-4a90-bc0f-9ef0f6a638d8\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.9736024Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.9737485Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.9780082Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.9783717Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.9976122Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.9977297Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\15c5695b-08c7-40b8-8e98-f0e4cdae94f0\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.9983636Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\15c5695b-08c7-40b8-8e98-f0e4cdae94f0\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.9985193Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:11.9986714Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.0032518Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.0035934Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.0221371Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.0222324Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e7bc6514-cb04-4adf-ae81-3789c2abad19\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.0228093Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e7bc6514-cb04-4adf-ae81-3789c2abad19\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.0229718Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.0231210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.0276553Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.0320152Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.0510598Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.0511724Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2f6dda6d-f027-4112-b1fc-7e598ac94ff7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.0517677Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2f6dda6d-f027-4112-b1fc-7e598ac94ff7\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.0519253Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.0520549Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.0560033Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.0562921Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.0746005Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.0747167Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8f1cb0de-d54a-43df-98f8-14f273822241\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.0753343Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8f1cb0de-d54a-43df-98f8-14f273822241\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.0754931Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.0756233Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.0795455Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.0798364Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.0809759Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Select project to upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:41:12.0810332Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:41:12.0812889Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Select project to upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep"} +{"@t":"2022-11-15T22:41:12.1017379Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.1018787Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3e22ab1a-0baf-44c8-9636-9f499bc0e6dc\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.1021315Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.1033763Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.1034198Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.1034949Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.1035230Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.1198157Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.1198969Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5ecf147c-f0ec-47da-a7bd-39220f545d2f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.1200825Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.1212707Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.1213133Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.1213798Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.1214066Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.1223341Z","@mt":"Skip minimum dependency check because .NET MAUI support multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:41:12.1256470Z","@mt":"Project {Name} is of type .NET MAUI Target:Android, migration to .NET MAUI recommends net7.0-android.","Name":"PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:41:12.1281177Z","@mt":"Project {Name} is of type .NET MAUI Target:iOS, migration to .NET MAUI recommends net7.0-ios.","Name":"PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:41:12.1298908Z","@mt":"Could not merge incoming TFM update from {Current} to {Next}","@l":"Warning","Current":"net7.0-android","Next":"net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.TargetFrameworkSelector"} +{"@t":"2022-11-15T22:41:12.1434629Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.1435320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\aab20c06-71e8-480a-833d-130f69e08f52\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.1436731Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.1548048Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.1548622Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.1549081Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.1549249Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.1665811Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.1666626Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6c3ea4a4-f55b-4837-9001-d0ff5bce9fe4\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.1667984Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.1675141Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.1675410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.1675837Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.1676050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.1848537Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.1849645Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d1be70a6-4a01-4727-9bcc-e38d27ebdfc3\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.1855103Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d1be70a6-4a01-4727-9bcc-e38d27ebdfc3\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.1856662Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.1863785Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.2116809Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.2122745Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.2320033Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.2321002Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8d9aabd0-830f-49bf-8105-1a45b6bb276f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.2326177Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8d9aabd0-830f-49bf-8105-1a45b6bb276f\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.2327724Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.2334775Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.2565539Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.2571584Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.2590116Z","@mt":"Skip minimum dependency check because Windows App SDK cannot work with targets lower than already recommended TFM.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:41:12.2617558Z","@mt":"Recommending Windows TFM {TFM} because the project either has Windows-specific dependencies or builds to a WinExe","TFM":"net7.0-windows10.0.19041","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsSdkTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:41:12.2750129Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.2750734Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2009ead4-7305-484a-bad4-1cf5c0b7088d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.2753714Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2009ead4-7305-484a-bad4-1cf5c0b7088d\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.2754558Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.2758448Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.2889581Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.2892789Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.2999130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.2999699Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\69d609e5-d82d-4050-b38a-b31c71d4212a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.3002551Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\69d609e5-d82d-4050-b38a-b31c71d4212a\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.3003355Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.3007108Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.3151691Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.3155611Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.3284648Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.3285311Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\607e9207-1933-4152-8de2-a3de08c4b2e3\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.3288793Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\607e9207-1933-4152-8de2-a3de08c4b2e3\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.3289822Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.3294533Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.3447638Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.3451684Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.3631755Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.3632609Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6b160b6d-7888-4390-9640-c7443aab6b4f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.3636679Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6b160b6d-7888-4390-9640-c7443aab6b4f\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.3637848Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.3643660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.3841574Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.3846704Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.4027810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.4028976Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\70c12b9e-32c4-423e-8d30-be4b21c0a662\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.4034288Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\70c12b9e-32c4-423e-8d30-be4b21c0a662\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.4035854Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.4042905Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.4274690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.4280595Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.4466665Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.4467582Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5a77ee79-b0e3-463c-8f51-5fa18ee0d794\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.4472797Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5a77ee79-b0e3-463c-8f51-5fa18ee0d794\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.4474343Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.4481191Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.4710538Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.4717053Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.4920642Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.4922182Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\beeb902f-813c-41b2-b70b-d8dc3c05bc50\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.4925524Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.4935097Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.4935734Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.5115528Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.5116543Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\68f677c3-e3ea-4194-b5dc-3003f7ae2407\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.5119205Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.5128478Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.5129068Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.5139375Z","@mt":"Skip minimum dependency check because .NET MAUI support multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:41:12.5172534Z","@mt":"Recommending executable TFM {TFM} because the project builds to an executable","TFM":"net7.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.ExecutableTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:41:12.5208765Z","@mt":"Project {Name} is of type .NET MAUI Target:Android, migration to .NET MAUI recommends net7.0-android.","Name":"PlantLady.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:41:12.5237261Z","@mt":"Project {Name} is of type .NET MAUI Target: MAUI head, migration to .NET MAUI requires to be multiplatform","Name":"PlantLady.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:41:12.5355150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.5355921Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\80a8ea59-50b5-475c-b5bc-2e94eeeb4b08\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.5357604Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.5362452Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.5362746Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.5481813Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.5482390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6c98705d-0c56-4409-9774-df2e34b51ba5\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.5483945Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.5489209Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.5489540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.5615659Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.5616322Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\41113978-a9fa-43ab-bc0b-968a028a0fac\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.5617888Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.5622792Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.5623118Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.5762245Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.5762932Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d891ae30-cb05-41e2-b4ab-6fb011078f61\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.5764812Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.5770228Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.5770550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.5893245Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.5894048Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ca7437d7-d38c-4fc6-bc37-894586406b3b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.5896001Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.5902766Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.5903150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.6024407Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.6025003Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\68f28fbc-b17b-4842-a36e-e9410c3448ea\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.6026724Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.6032679Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.6033053Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.6175685Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.6176547Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6d94f090-3f1b-4cfd-9c6b-a733ddd407a7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.6180670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6d94f090-3f1b-4cfd-9c6b-a733ddd407a7\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.6181779Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.6182738Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.6212134Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.6214425Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.6399663Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.6400871Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c64c01f1-f350-48c6-acdb-5aad00761b79\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.6407800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c64c01f1-f350-48c6-acdb-5aad00761b79\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.6409775Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.6411344Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.6460311Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.6464039Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.6742832Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.6744450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9f2a3348-225d-4b40-9b5e-909b2c5c4196\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.6752854Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9f2a3348-225d-4b40-9b5e-909b2c5c4196\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.6755196Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.6757199Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.6860881Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.6865573Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.7129157Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.7130671Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fcb8a104-65e8-4c2f-8d4d-9f6b6508c4d2\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.7139065Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fcb8a104-65e8-4c2f-8d4d-9f6b6508c4d2\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.7141379Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.7143299Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.7210614Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.7214935Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.7498770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.7500399Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1ac0c050-40b8-40c5-872b-5680cd806a68\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.7508562Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1ac0c050-40b8-40c5-872b-5680cd806a68\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.7510891Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.7512798Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.7569471Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.7573846Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.7842742Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.7844182Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ad447600-695f-45a4-aacf-0ce0743b8ac7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.7853448Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ad447600-695f-45a4-aacf-0ce0743b8ac7\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.7855832Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.7857775Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.7914272Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.7918558Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:12.7933321Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Select project to upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep"} +{"@t":"2022-11-15T22:41:12.7997089Z","@mt":"Resetting upgrade step {UpgradeStep} because upgrade context has changed significantly since it was initialized","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:12.7998259Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Back up project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:41:12.8048420Z","@mt":"Determining backup path","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:12.8050166Z","@mt":"Using backup path {BackupPath}","@l":"Debug","BackupPath":"C:\\code\\PlantLady.backup\\PlantLady.iOS","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:12.8051716Z","@mt":"Backup upgrade step initialized as incomplete; will backup to {BackupLocation}","@l":"Debug","BackupLocation":"C:\\code\\PlantLady.backup\\PlantLady.iOS","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:12.8053267Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Back up project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:41:12.8053807Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:41:12.8057808Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Back up project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:12.8099315Z","@mt":"Determining backup path","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:12.8099827Z","@mt":"Using backup path {BackupPath}","@l":"Debug","BackupPath":"C:\\code\\PlantLady.backup\\PlantLady.iOS","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:12.8100314Z","@mt":"Backing up {ProjectDir} to {BackupPath}","ProjectDir":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS","BackupPath":"C:\\code\\PlantLady.backup\\PlantLady.iOS","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:12.8304453Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\AppDelegate.cs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\AppDelegate.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:12.8477305Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\Entitlements.plist","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\Entitlements.plist","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:12.8679296Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\Info.plist","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\Info.plist","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:12.8980012Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\Main.cs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\Main.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:12.9003313Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\PlantLady.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:12.9025124Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj.user","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\PlantLady.iOS.csproj.user","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:12.9096376Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\Assets.xcassets\\aloevera.jpg.imageset\\aloevera.jpg","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\Assets.xcassets\\aloevera.jpg.imageset\\aloevera.jpg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:12.9351147Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\Assets.xcassets\\aloevera.jpg.imageset\\Contents.json","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\Assets.xcassets\\aloevera.jpg.imageset\\Contents.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:12.9572181Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\Assets.xcassets\\AppIcon.appiconset\\Contents.json","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\Assets.xcassets\\AppIcon.appiconset\\Contents.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:12.9625832Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\Assets.xcassets\\AppIcon.appiconset\\Icon1024.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\Assets.xcassets\\AppIcon.appiconset\\Icon1024.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:12.9661179Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\Assets.xcassets\\AppIcon.appiconset\\Icon120.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\Assets.xcassets\\AppIcon.appiconset\\Icon120.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:12.9699606Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\Assets.xcassets\\AppIcon.appiconset\\Icon152.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\Assets.xcassets\\AppIcon.appiconset\\Icon152.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:12.9738562Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\Assets.xcassets\\AppIcon.appiconset\\Icon167.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\Assets.xcassets\\AppIcon.appiconset\\Icon167.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:12.9773509Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\Assets.xcassets\\AppIcon.appiconset\\Icon180.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\Assets.xcassets\\AppIcon.appiconset\\Icon180.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:12.9845242Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\Assets.xcassets\\AppIcon.appiconset\\Icon20.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\Assets.xcassets\\AppIcon.appiconset\\Icon20.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:12.9881542Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\Assets.xcassets\\AppIcon.appiconset\\Icon29.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\Assets.xcassets\\AppIcon.appiconset\\Icon29.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:12.9923248Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\Assets.xcassets\\AppIcon.appiconset\\Icon40.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\Assets.xcassets\\AppIcon.appiconset\\Icon40.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:12.9957868Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\Assets.xcassets\\AppIcon.appiconset\\Icon58.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\Assets.xcassets\\AppIcon.appiconset\\Icon58.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:12.9993888Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\Assets.xcassets\\AppIcon.appiconset\\Icon60.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\Assets.xcassets\\AppIcon.appiconset\\Icon60.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:13.0028824Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\Assets.xcassets\\AppIcon.appiconset\\Icon76.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\Assets.xcassets\\AppIcon.appiconset\\Icon76.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:13.0070446Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\Assets.xcassets\\AppIcon.appiconset\\Icon80.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\Assets.xcassets\\AppIcon.appiconset\\Icon80.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:13.0105846Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\Assets.xcassets\\AppIcon.appiconset\\Icon87.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\Assets.xcassets\\AppIcon.appiconset\\Icon87.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:13.0666472Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\icudt.dat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\icudt.dat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:13.1097385Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\icudt_CJK.dat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\icudt_CJK.dat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:13.1487359Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\icudt_EFIGS.dat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\icudt_EFIGS.dat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:13.2049961Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\icudt_no_CJK.dat","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\icudt_no_CJK.dat","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:13.2258432Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libicudata.a","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libicudata.a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:13.3321655Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libicui18n.a","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libicui18n.a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:13.4108905Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libicuuc.a","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libicuuc.a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:13.4579503Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libmono-component-debugger-static.a","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libmono-component-debugger-static.a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:13.4794252Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libmono-component-debugger-stub-static.a","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libmono-component-debugger-stub-static.a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:13.5141191Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libmono-component-debugger.dylib","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libmono-component-debugger.dylib","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:13.5770387Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libmono-component-diagnostics_tracing-static.a","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libmono-component-diagnostics_tracing-static.a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:13.5985989Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libmono-component-diagnostics_tracing-stub-static.a","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libmono-component-diagnostics_tracing-stub-static.a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:13.6363644Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libmono-component-diagnostics_tracing.dylib","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libmono-component-diagnostics_tracing.dylib","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:13.6610365Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libmono-component-hot_reload-static.a","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libmono-component-hot_reload-static.a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:13.6829378Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libmono-component-hot_reload-stub-static.a","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libmono-component-hot_reload-stub-static.a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:13.7081954Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libmono-component-hot_reload.dylib","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libmono-component-hot_reload.dylib","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:14.2870388Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libmonosgen-2.0.a","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libmonosgen-2.0.a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:14.4989758Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libmonosgen-2.0.dylib","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libmonosgen-2.0.dylib","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:14.5615601Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libSystem.IO.Compression.Native.a","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libSystem.IO.Compression.Native.a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:14.5942380Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libSystem.IO.Compression.Native.dylib","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libSystem.IO.Compression.Native.dylib","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:14.6274111Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libSystem.Native.a","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libSystem.Native.a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:14.6533500Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libSystem.Native.dylib","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libSystem.Native.dylib","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:14.6761867Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libSystem.Net.Security.Native.a","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libSystem.Net.Security.Native.a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:14.6986718Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libSystem.Net.Security.Native.dylib","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libSystem.Net.Security.Native.dylib","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:14.7257940Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libSystem.Security.Cryptography.Native.Apple.a","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libSystem.Security.Cryptography.Native.Apple.a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:14.7515192Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libSystem.Security.Cryptography.Native.Apple.dylib","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libSystem.Security.Cryptography.Native.Apple.dylib","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:14.7998694Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libxamarin-dotnet-debug.a","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libxamarin-dotnet-debug.a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:14.8386949Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libxamarin-dotnet-debug.dylib","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libxamarin-dotnet-debug.dylib","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:14.8851361Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libxamarin-dotnet.a","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libxamarin-dotnet.a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:14.9202880Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libxamarin-dotnet.dylib","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\libxamarin-dotnet.dylib","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:15.2079776Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\Microsoft.CSharp.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\Microsoft.CSharp.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:15.2754415Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\Microsoft.Extensions.Configuration.Abstractions.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\Microsoft.Extensions.Configuration.Abstractions.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:15.3870438Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\Microsoft.Extensions.Configuration.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\Microsoft.Extensions.Configuration.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:15.5455411Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\Microsoft.Extensions.DependencyInjection.Abstractions.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\Microsoft.Extensions.DependencyInjection.Abstractions.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:15.7131680Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\Microsoft.Extensions.DependencyInjection.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\Microsoft.Extensions.DependencyInjection.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:15.8137114Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\Microsoft.Extensions.Logging.Abstractions.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\Microsoft.Extensions.Logging.Abstractions.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:15.9054918Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\Microsoft.Extensions.Logging.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\Microsoft.Extensions.Logging.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:16.0273614Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\Microsoft.Extensions.Options.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\Microsoft.Extensions.Options.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:16.1461508Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\Microsoft.Extensions.Primitives.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\Microsoft.Extensions.Primitives.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:21.2256605Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\Microsoft.iOS.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\Microsoft.iOS.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:21.3519762Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\Microsoft.iOS.registrar.a","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\Microsoft.iOS.registrar.a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:21.6336463Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\Microsoft.Maui.Controls.Compatibility.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\Microsoft.Maui.Controls.Compatibility.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:21.9426948Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\Microsoft.Maui.Controls.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\Microsoft.Maui.Controls.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:22.2603800Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\Microsoft.Maui.Controls.Xaml.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\Microsoft.Maui.Controls.Xaml.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:22.3903994Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\Microsoft.Maui.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\Microsoft.Maui.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:22.5470806Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\Microsoft.Maui.Essentials.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\Microsoft.Maui.Essentials.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:22.7923097Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\Microsoft.Maui.Graphics.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\Microsoft.Maui.Graphics.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:23.0657084Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\Microsoft.VisualBasic.Core.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\Microsoft.VisualBasic.Core.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:23.1078354Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\Microsoft.VisualBasic.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\Microsoft.VisualBasic.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:23.2070799Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\Microsoft.Win32.Primitives.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\Microsoft.Win32.Primitives.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:23.3400421Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\Microsoft.Win32.Registry.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\Microsoft.Win32.Registry.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:23.3950886Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\mscorlib.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\mscorlib.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:23.4849811Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\netstandard.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\netstandard.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:23.5286364Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\PlantLady.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\PlantLady.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:23.5723464Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\PlantLady.iOS.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\PlantLady.iOS.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:23.5905655Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\PlantLady.iOS.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\PlantLady.iOS.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:23.6079701Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\PlantLady.iOS.runtimeconfig.json","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\PlantLady.iOS.runtimeconfig.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:23.6248667Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\PlantLady.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\PlantLady.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:23.6569615Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.AppContext.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.AppContext.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:23.6878415Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Buffers.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Buffers.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:23.8388860Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Collections.Concurrent.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Collections.Concurrent.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:24.0235623Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Collections.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Collections.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:24.1299230Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Collections.Immutable.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Collections.Immutable.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:24.2632816Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Collections.NonGeneric.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Collections.NonGeneric.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:24.3897028Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Collections.Specialized.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Collections.Specialized.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:24.5738620Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.ComponentModel.Annotations.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.ComponentModel.Annotations.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:24.5984622Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.ComponentModel.DataAnnotations.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.ComponentModel.DataAnnotations.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:24.6188624Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.ComponentModel.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.ComponentModel.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:24.6659539Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.ComponentModel.EventBasedAsync.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.ComponentModel.EventBasedAsync.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:24.8399423Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.ComponentModel.Primitives.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.ComponentModel.Primitives.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:25.1650951Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.ComponentModel.TypeConverter.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.ComponentModel.TypeConverter.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:25.2320144Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Configuration.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Configuration.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:25.3821735Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Console.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Console.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:25.4060415Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Core.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Core.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:25.5596392Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Data.Common.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Data.Common.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:25.6266919Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Data.DataSetExtensions.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Data.DataSetExtensions.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:25.6780861Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Data.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Data.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:25.7247635Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Diagnostics.Contracts.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Diagnostics.Contracts.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:25.7713931Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Diagnostics.Debug.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Diagnostics.Debug.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:26.0302247Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Diagnostics.DiagnosticSource.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Diagnostics.DiagnosticSource.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:26.1155091Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Diagnostics.FileVersionInfo.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Diagnostics.FileVersionInfo.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:26.3255930Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Diagnostics.Process.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Diagnostics.Process.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:26.3881121Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Diagnostics.StackTrace.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Diagnostics.StackTrace.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:26.5659542Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Diagnostics.TextWriterTraceListener.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Diagnostics.TextWriterTraceListener.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:26.6102966Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Diagnostics.Tools.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Diagnostics.Tools.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:26.8004482Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Diagnostics.TraceSource.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Diagnostics.TraceSource.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:26.8270569Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Diagnostics.Tracing.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Diagnostics.Tracing.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:26.8547622Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:26.8759126Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Drawing.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Drawing.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:26.9843756Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Drawing.Primitives.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Drawing.Primitives.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:27.0138893Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Dynamic.Runtime.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Dynamic.Runtime.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:27.1299921Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Formats.Asn1.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Formats.Asn1.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:27.1532199Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Globalization.Calendars.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Globalization.Calendars.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:27.1773899Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Globalization.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Globalization.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:27.1974821Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Globalization.Extensions.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Globalization.Extensions.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:27.2650553Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.IO.Compression.Brotli.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.IO.Compression.Brotli.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:27.4547194Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.IO.Compression.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.IO.Compression.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:27.4863370Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.IO.Compression.FileSystem.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.IO.Compression.FileSystem.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:27.5581051Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.IO.Compression.ZipFile.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.IO.Compression.ZipFile.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:27.6049252Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.IO.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.IO.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:27.6575823Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.IO.FileSystem.AccessControl.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.IO.FileSystem.AccessControl.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:27.6985388Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.IO.FileSystem.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.IO.FileSystem.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:27.8970481Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.IO.FileSystem.DriveInfo.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.IO.FileSystem.DriveInfo.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:27.9385143Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.IO.FileSystem.Primitives.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.IO.FileSystem.Primitives.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:28.0060361Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.IO.FileSystem.Watcher.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.IO.FileSystem.Watcher.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:28.1424955Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.IO.IsolatedStorage.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.IO.IsolatedStorage.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:28.2155842Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.IO.MemoryMappedFiles.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.IO.MemoryMappedFiles.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:28.2416009Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.IO.Pipes.AccessControl.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.IO.Pipes.AccessControl.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:28.3808959Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.IO.Pipes.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.IO.Pipes.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:28.4278650Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.IO.UnmanagedMemoryStream.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.IO.UnmanagedMemoryStream.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:28.6261367Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Linq.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Linq.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:28.8567279Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Linq.Expressions.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Linq.Expressions.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:29.0031207Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Linq.Parallel.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Linq.Parallel.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:29.0930519Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Linq.Queryable.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Linq.Queryable.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:29.1600518Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Memory.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Memory.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:29.1844514Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Net.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Net.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:29.3889200Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Net.Http.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Net.Http.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:29.5188768Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Net.Http.Json.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Net.Http.Json.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:29.8314601Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Net.HttpListener.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Net.HttpListener.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:30.0667892Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Net.Mail.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Net.Mail.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:30.2382343Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Net.NameResolution.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Net.NameResolution.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:30.3194491Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Net.NetworkInformation.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Net.NetworkInformation.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:30.4384964Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Net.Ping.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Net.Ping.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:30.6450381Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Net.Primitives.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Net.Primitives.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:30.7220723Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Net.Quic.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Net.Quic.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:30.9313576Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Net.Requests.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Net.Requests.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:31.1010700Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Net.Security.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Net.Security.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:31.1634735Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Net.ServicePoint.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Net.ServicePoint.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:31.3144693Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Net.Sockets.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Net.Sockets.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:31.5404403Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Net.WebClient.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Net.WebClient.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:31.7231776Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Net.WebHeaderCollection.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Net.WebHeaderCollection.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:31.7748125Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Net.WebProxy.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Net.WebProxy.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:31.9104239Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Net.WebSockets.Client.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Net.WebSockets.Client.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:32.1311331Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Net.WebSockets.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Net.WebSockets.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:32.1763186Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Numerics.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Numerics.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:32.2258241Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Numerics.Vectors.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Numerics.Vectors.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:32.3221168Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.ObjectModel.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.ObjectModel.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:32.5688298Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Private.CoreLib.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Private.CoreLib.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:32.8611147Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Private.DataContractSerialization.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Private.DataContractSerialization.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:33.1773903Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Private.Uri.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Private.Uri.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:33.6691703Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Private.Xml.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Private.Xml.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:33.9246239Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Private.Xml.Linq.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Private.Xml.Linq.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:34.0617576Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Reflection.DispatchProxy.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Reflection.DispatchProxy.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:34.1088155Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Reflection.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Reflection.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:34.1534129Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Reflection.Emit.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Reflection.Emit.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:34.1896601Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Reflection.Emit.ILGeneration.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Reflection.Emit.ILGeneration.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:34.2271738Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Reflection.Emit.Lightweight.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Reflection.Emit.Lightweight.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:34.2636437Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Reflection.Extensions.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Reflection.Extensions.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:34.5424156Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Reflection.Metadata.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Reflection.Metadata.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:34.5876739Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Reflection.Primitives.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Reflection.Primitives.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:34.6913692Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Reflection.TypeExtensions.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Reflection.TypeExtensions.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:34.7235445Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Resources.Reader.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Resources.Reader.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:34.7557481Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Resources.ResourceManager.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Resources.ResourceManager.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:34.8091016Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Resources.Writer.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Resources.Writer.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:34.8402865Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Runtime.CompilerServices.Unsafe.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Runtime.CompilerServices.Unsafe.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:34.8851880Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Runtime.CompilerServices.VisualC.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Runtime.CompilerServices.VisualC.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:34.9342909Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Runtime.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Runtime.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:34.9809635Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Runtime.Extensions.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Runtime.Extensions.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:35.0210311Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Runtime.Handles.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Runtime.Handles.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:35.0906601Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Runtime.InteropServices.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Runtime.InteropServices.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:35.1527973Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Runtime.InteropServices.RuntimeInformation.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Runtime.InteropServices.RuntimeInformation.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:35.1936522Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Runtime.Intrinsics.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Runtime.Intrinsics.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:35.2337282Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Runtime.Loader.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Runtime.Loader.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:35.3726011Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Runtime.Numerics.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Runtime.Numerics.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:35.4159873Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Runtime.Serialization.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Runtime.Serialization.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:35.6462418Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Runtime.Serialization.Formatters.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Runtime.Serialization.Formatters.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:35.6872922Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Runtime.Serialization.Json.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Runtime.Serialization.Json.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:35.7369676Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Runtime.Serialization.Primitives.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Runtime.Serialization.Primitives.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:35.7764720Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Runtime.Serialization.Xml.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Runtime.Serialization.Xml.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:35.8692797Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Security.AccessControl.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Security.AccessControl.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:35.9933333Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Security.Claims.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Security.Claims.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:36.2179473Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Security.Cryptography.Algorithms.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Security.Cryptography.Algorithms.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:36.3530433Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Security.Cryptography.Cng.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Security.Cryptography.Cng.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:36.4972487Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Security.Cryptography.Csp.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Security.Cryptography.Csp.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:36.8000644Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Security.Cryptography.Encoding.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Security.Cryptography.Encoding.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:36.8607604Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Security.Cryptography.OpenSsl.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Security.Cryptography.OpenSsl.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:37.0423903Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Security.Cryptography.Primitives.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Security.Cryptography.Primitives.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:37.2085321Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Security.Cryptography.X509Certificates.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Security.Cryptography.X509Certificates.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:37.2387577Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Security.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Security.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:37.2750638Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Security.Principal.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Security.Principal.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:37.3628648Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Security.Principal.Windows.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Security.Principal.Windows.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:37.4095749Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Security.SecureString.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Security.SecureString.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:37.4512088Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.ServiceModel.Web.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.ServiceModel.Web.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:37.4809439Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.ServiceProcess.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.ServiceProcess.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:37.6644811Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Text.Encoding.CodePages.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Text.Encoding.CodePages.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:37.7127220Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Text.Encoding.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Text.Encoding.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:37.7623904Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Text.Encoding.Extensions.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Text.Encoding.Extensions.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:37.9002469Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Text.Encodings.Web.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Text.Encodings.Web.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:38.1139276Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Text.Json.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Text.Json.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:38.4728912Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Text.RegularExpressions.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Text.RegularExpressions.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:38.5984774Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Threading.Channels.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Threading.Channels.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:38.7509534Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Threading.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Threading.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:38.7900426Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Threading.Overlapped.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Threading.Overlapped.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:38.9416948Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Threading.Tasks.Dataflow.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Threading.Tasks.Dataflow.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:38.9892753Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Threading.Tasks.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Threading.Tasks.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:39.0345973Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Threading.Tasks.Extensions.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Threading.Tasks.Extensions.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:39.2130314Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Threading.Tasks.Parallel.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Threading.Tasks.Parallel.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:39.2567527Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Threading.Thread.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Threading.Thread.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:39.3018872Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Threading.ThreadPool.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Threading.ThreadPool.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:39.3462922Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Threading.Timer.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Threading.Timer.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:39.3792810Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Transactions.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Transactions.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:39.5381982Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Transactions.Local.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Transactions.Local.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:39.5806978Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.ValueTuple.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.ValueTuple.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:39.6242843Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Web.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Web.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:39.7329693Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Web.HttpUtility.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Web.HttpUtility.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:39.7726508Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Windows.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Windows.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:39.8186955Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Xml.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Xml.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:39.8605253Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Xml.Linq.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Xml.Linq.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:39.8968122Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Xml.ReaderWriter.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Xml.ReaderWriter.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:39.9364051Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Xml.Serialization.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Xml.Serialization.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:39.9695534Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Xml.XDocument.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Xml.XDocument.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.0001210Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Xml.XmlDocument.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Xml.XmlDocument.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.0319509Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Xml.XmlSerializer.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Xml.XmlSerializer.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.0718609Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Xml.XPath.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Xml.XPath.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.1163564Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Xml.XPath.XDocument.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\System.Xml.XPath.XDocument.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.1505825Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\WindowsBase.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\WindowsBase.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.1658554Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\PlantLady.iOS.app\\runtimeconfig.bin","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\bin\\Debug\\net6.0-ios\\iossimulator-x64\\PlantLady.iOS.app\\runtimeconfig.bin","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.1839907Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\PlantLady.iOS.csproj.nuget.dgspec.json","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\PlantLady.iOS.csproj.nuget.dgspec.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.1860669Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\PlantLady.iOS.csproj.nuget.g.props","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\PlantLady.iOS.csproj.nuget.g.props","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.1892881Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\PlantLady.iOS.csproj.nuget.g.targets","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\PlantLady.iOS.csproj.nuget.g.targets","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.2165019Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\project.assets.json","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\project.assets.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.2402300Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\project.nuget.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\project.nuget.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.2640503Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\ios-arm64\\mauifont.inputs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\ios-arm64\\mauifont.inputs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.2662696Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\ios-arm64\\mauifont.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\ios-arm64\\mauifont.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.2691543Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\ios-arm64\\mauiimage.inputs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\ios-arm64\\mauiimage.inputs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.2711184Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\ios-arm64\\mauiimage.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\ios-arm64\\mauiimage.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.2730292Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\ios-arm64\\mauisplash.inputs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\ios-arm64\\mauisplash.inputs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.2755027Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\ios-arm64\\PlantLady.iOS.csproj.FileListAbsolute.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\ios-arm64\\PlantLady.iOS.csproj.FileListAbsolute.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.3018626Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\ios-arm64\\actool\\_BundleResourceWithLogicalName.items","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\ios-arm64\\actool\\_BundleResourceWithLogicalName.items","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.3065494Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\ios-arm64\\actool\\_PartialAppManifest.items","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\ios-arm64\\actool\\_PartialAppManifest.items","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.3129193Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\ios-arm64\\coremlc\\_BundleResourceWithLogicalName.items","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\ios-arm64\\coremlc\\_BundleResourceWithLogicalName.items","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.3175408Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\ios-arm64\\coremlc\\_PartialAppManifest.items","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\ios-arm64\\coremlc\\_PartialAppManifest.items","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.3237073Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\ios-arm64\\ibtool\\_BundleResourceWithLogicalName.items","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\ios-arm64\\ibtool\\_BundleResourceWithLogicalName.items","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.3475718Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\ios-arm64\\resizetizer\\f\\AmaticSC-Regular.ttf","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\ios-arm64\\resizetizer\\f\\AmaticSC-Regular.ttf","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.3755773Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\ios-arm64\\resizetizer\\f\\materialdesignicons-webfont.ttf","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\ios-arm64\\resizetizer\\f\\materialdesignicons-webfont.ttf","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.3994026Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\ios-arm64\\resizetizer\\f\\MauiInfo.plist","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\ios-arm64\\resizetizer\\f\\MauiInfo.plist","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.4238562Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\ios-arm64\\resizetizer\\f\\Michella-Garden.otf","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\ios-arm64\\resizetizer\\f\\Michella-Garden.otf","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.4548136Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\.NETCoreApp,Version=v6.0.AssemblyAttributes.cs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\.NETCoreApp,Version=v6.0.AssemblyAttributes.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.4588862Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\mauifont.inputs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\mauifont.inputs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.4619957Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\mauifont.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\mauifont.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.4640376Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\mauiimage.inputs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\mauiimage.inputs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.4656699Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\mauiimage.stamp","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\mauiimage.stamp","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.4670378Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\mauisplash.inputs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\mauisplash.inputs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.4908123Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\PlantLady.iOS.AssemblyInfo.cs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\PlantLady.iOS.AssemblyInfo.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.5055706Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\PlantLady.iOS.AssemblyInfoInputs.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\PlantLady.iOS.AssemblyInfoInputs.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.5259089Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\PlantLady.iOS.assets.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\PlantLady.iOS.assets.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.5499559Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\PlantLady.iOS.csproj.AssemblyReference.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\PlantLady.iOS.csproj.AssemblyReference.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.5528372Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\PlantLady.iOS.csproj.CopyComplete","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\PlantLady.iOS.csproj.CopyComplete","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.5774168Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\PlantLady.iOS.csproj.CoreCompileInputs.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\PlantLady.iOS.csproj.CoreCompileInputs.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.6021986Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\PlantLady.iOS.csproj.FileListAbsolute.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\PlantLady.iOS.csproj.FileListAbsolute.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.6083576Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\PlantLady.iOS.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\PlantLady.iOS.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.6343681Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\PlantLady.iOS.GeneratedMSBuildEditorConfig.editorconfig","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\PlantLady.iOS.GeneratedMSBuildEditorConfig.editorconfig","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.6562739Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\PlantLady.iOS.genruntimeconfig.cache","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\PlantLady.iOS.genruntimeconfig.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.6830205Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\PlantLady.iOS.GlobalUsings.g.cs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\PlantLady.iOS.GlobalUsings.g.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.7073575Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\PlantLady.iOS.pdb","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\PlantLady.iOS.pdb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.7098565Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\PublishOutputs.319607c1e0.txt","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\PublishOutputs.319607c1e0.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.7178602Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\actool\\_BundleResourceWithLogicalName.items","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\actool\\_BundleResourceWithLogicalName.items","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.7236196Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\actool\\_PartialAppManifest.items","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\actool\\_PartialAppManifest.items","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.7314120Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\coremlc\\_BundleResourceWithLogicalName.items","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\coremlc\\_BundleResourceWithLogicalName.items","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.7365740Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\coremlc\\_PartialAppManifest.items","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\coremlc\\_PartialAppManifest.items","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.7435772Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\ibtool\\_BundleResourceWithLogicalName.items","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\ibtool\\_BundleResourceWithLogicalName.items","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.7960527Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\ref\\PlantLady.iOS.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\ref\\PlantLady.iOS.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.8036459Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\refint\\PlantLady.iOS.dll","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\refint\\PlantLady.iOS.dll","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.8305664Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\resizetizer\\f\\AmaticSC-Regular.ttf","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\resizetizer\\f\\AmaticSC-Regular.ttf","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.8588418Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\resizetizer\\f\\materialdesignicons-webfont.ttf","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\resizetizer\\f\\materialdesignicons-webfont.ttf","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.8659238Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\resizetizer\\f\\MauiInfo.plist","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\resizetizer\\f\\MauiInfo.plist","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.8920974Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\resizetizer\\f\\Michella-Garden.otf","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\obj\\Debug\\net6.0-ios\\iossimulator-x64\\resizetizer\\f\\Michella-Garden.otf","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.9316166Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\Properties\\AssemblyInfo.cs","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\Properties\\AssemblyInfo.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.9376319Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\Resources\\Default-568h@2x.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\Resources\\Default-568h@2x.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.9413193Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\Resources\\Default-Portrait.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\Resources\\Default-Portrait.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.9467211Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\Resources\\Default-Portrait@2x.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\Resources\\Default-Portrait@2x.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.9505325Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\Resources\\Default.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\Resources\\Default.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.9546593Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\Resources\\Default@2x.png","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\Resources\\Default@2x.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.9807317Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\Resources\\LaunchScreen.storyboard","DestinationFile":"C:\\code\\PlantLady.backup\\PlantLady.iOS\\Resources\\LaunchScreen.storyboard","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.9830179Z","@mt":"Project backed up to C:\\code\\PlantLady.backup\\PlantLady.iOS","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.9861205Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Back up project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"} +{"@t":"2022-11-15T22:41:40.9905973Z","@mt":"Resetting upgrade step {UpgradeStep} because upgrade context has changed significantly since it was initialized","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.TryConvertProjectConverterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.TryConvertProjectConverterStep"} +{"@t":"2022-11-15T22:41:40.9907439Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Convert project file to SDK style","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:41:40.9941894Z","@mt":"Project {ProjectPath} not yet converted","@l":"Debug","ProjectPath":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.TryConvertRunner"} +{"@t":"2022-11-15T22:41:41.0258034Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:41.0259765Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\dba8bfb9-2d36-47c0-92b8-cfb20a5ca6e2\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:41.0272058Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\dba8bfb9-2d36-47c0-92b8-cfb20a5ca6e2\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:41.0275798Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:41.0278095Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:41.0346854Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:41.0351212Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:41.0656938Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:41.0658911Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\daea2d6a-beb1-45b5-b800-f2ff3a8a90ea\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:41.0668435Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\daea2d6a-beb1-45b5-b800-f2ff3a8a90ea\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:41.0670828Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:41.0672794Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:41.0743702Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:41.0748299Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:41.0763760Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Convert project file to SDK style","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:41:41.0764793Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.TryConvertProjectConverterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:41:41.0768331Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Convert project file to SDK style","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.TryConvertProjectConverterStep"} +{"@t":"2022-11-15T22:41:41.1121669Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:41.1123941Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\846f86b0-a52c-4a13-89e1-e0c97691022e\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:41.1135301Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\846f86b0-a52c-4a13-89e1-e0c97691022e\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:41.1138425Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:41.1140987Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:41.1212124Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:41.1219538Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:41.1832634Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:41.1834542Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3c7e972a-563b-484f-bb9d-cfb9d82fc52d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:41.1843729Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3c7e972a-563b-484f-bb9d-cfb9d82fc52d\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:41.1846110Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:41.1848028Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:41.1949295Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:41.1954192Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:41.1970094Z","@mt":"Converting project file format with try-convert, version 0.4.355802+b2aeae2c0e41fbfed35df6ab2e88b82a0c11be2b","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.TryConvertRunner"} +{"@t":"2022-11-15T22:41:41.2304118Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:41.2305931Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6d6ba26a-a526-49c0-8715-454ae984db99\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:41.2316038Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6d6ba26a-a526-49c0-8715-454ae984db99\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:41.2318477Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:41.2320636Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:41.2412287Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:41.2418593Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:41.2692095Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:41.2693924Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8a40562d-c00a-4c78-af0a-d50059e575be\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:41.2703402Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8a40562d-c00a-4c78-af0a-d50059e575be\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:41.2706175Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:41.2708202Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:41.2775186Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:41.2779659Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:41:41.2795715Z","@mt":"Recommending TFM {TFM} because of dependency on project {Dependency}","TFM":"net7.0-android","Dependency":"C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:41:41.2864633Z","@mt":"Project {Name} is of type Xamarin.iOS, migration to .NET MAUI recommends net7.0-ios.","Name":"PlantLady.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:41:41.2905874Z","@mt":"Could not merge incoming TFM update from {Current} to {Next}","@l":"Warning","Current":"net7.0-android","Next":"net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.TargetFrameworkSelector"} +{"@t":"2022-11-15T22:41:44.4127950Z","@mt":"Converting project {Path} to SDK style","Path":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.TryConvertInProcessTool"} +{"@t":"2022-11-15T22:41:45.5811151Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj: (0, 0): Project PlantLady is not compatible with net7.0-windows10.0.19041 (.NETCoreApp,Version=v7.0). Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:41:45.5812441Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets '.NETCoreApp,Version=v7.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:10.6924383Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:10.6925630Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:10.6926025Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:10.6926347Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:10.8584285Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:13.7454536Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:13.7456041Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Project PlantLady is not compatible with net10 (.NETFramework,Version=v1.0). Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:13.7456716Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0) / win7-x86. Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:13.7457335Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Project PlantLady is not compatible with net10 (.NETFramework,Version=v1.0) / win7-x86. Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:13.7457826Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\Properties\\AndroidManifest.xml: (0, 0): AndroidManifest.xml //uses-sdk/@android:targetSdkVersion '29' is less than $(TargetFrameworkVersion) ''. Using API-33 for ACW compilation.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:13.7458299Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:13.7458774Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka com.companyname.plantlady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:13.7459317Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:13.7459859Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka com.companyname.plantlady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:13.7460411Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: Resources\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:13.7460893Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: Resources\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka com.companyname.plantlady:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:13.7461369Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka com.companyname.plantlady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:13.7461837Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka com.companyname.plantlady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:13.7462353Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka com.companyname.plantlady:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:13.7462972Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:13.7463602Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka com.companyname.plantlady:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:13.7464097Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorAccent (aka com.companyname.plantlady:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:13.7464857Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka com.companyname.plantlady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:13.7465327Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka com.companyname.plantlady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:13.7465829Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka com.companyname.plantlady:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:13.7466293Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka com.companyname.plantlady:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:13.7466804Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:13.7467304Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka com.companyname.plantlady:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:13.7467845Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka com.companyname.plantlady:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:13.7468302Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka com.companyname.plantlady:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:13.7468822Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:14.1408044Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets '.NETFramework,Version=v1.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:14.1416194Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:14.1483011Z","@mt":"Project file converted successfully! The project may require additional changes to build successfully against the new .NET target.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.TryConvertRunner"} +{"@t":"2022-11-15T22:42:14.1535254Z","@mt":"Restoring packages for {ProjectPath} with dotnet restore","@l":"Debug","ProjectPath":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.DotnetRestorePackageRestorer"} +{"@t":"2022-11-15T22:42:15.4233983Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":" Determining projects to restore...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:42:16.6876640Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj : error NU1202: Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:42:16.6877794Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj : error NU1202: - monoandroid10.0 (MonoAndroid,Version=v10.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:42:16.6878066Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj : error NU1202: - netstandard1.0 (.NETStandard,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:42:16.6878257Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj : error NU1202: - netstandard2.0 (.NETStandard,Version=v2.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:42:16.6878449Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj : error NU1202: - tizen40 (Tizen,Version=v4.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:42:16.6878629Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj : error NU1202: - uap10.0.16299 (UAP,Version=v10.0.16299)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:42:16.6878799Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj : error NU1202: - xamarinios10 (Xamarin.iOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:42:16.6878993Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj : error NU1202: - xamarinmac20 (Xamarin.Mac,Version=v2.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:42:16.6879165Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj : error NU1202: - xamarintvos10 (Xamarin.TVOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:42:16.6879477Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj : error NU1202: - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:42:16.6880301Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj : error NU1201: Project PlantLady is not compatible with net10 (.NETFramework,Version=v1.0). Project PlantLady supports:","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:42:16.6880819Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj : error NU1201: - net7.0-android33.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:42:16.6881034Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj : error NU1201: - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:42:16.6884187Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj : error NU1202: Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0) / win7-x86. Package Xamarin.Essentials 1.7.0 supports:","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:42:16.6884882Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj : error NU1202: - monoandroid10.0 (MonoAndroid,Version=v10.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:42:16.6885096Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj : error NU1202: - netstandard1.0 (.NETStandard,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:42:16.6885271Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj : error NU1202: - netstandard2.0 (.NETStandard,Version=v2.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:42:16.6885453Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj : error NU1202: - tizen40 (Tizen,Version=v4.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:42:16.6885625Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj : error NU1202: - uap10.0.16299 (UAP,Version=v10.0.16299)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:42:16.6885794Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj : error NU1202: - xamarinios10 (Xamarin.iOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:42:16.6885986Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj : error NU1202: - xamarinmac20 (Xamarin.Mac,Version=v2.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:42:16.6886158Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj : error NU1202: - xamarintvos10 (Xamarin.TVOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:42:16.6886459Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj : error NU1202: - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:42:16.6888010Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj : error NU1201: Project PlantLady is not compatible with net10 (.NETFramework,Version=v1.0) / win7-x86. Project PlantLady supports:","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:42:16.6888496Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj : error NU1201: - net7.0-android33.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:42:16.6888699Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj : error NU1201: - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:42:16.7301023Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":" Failed to restore C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj (in 267 ms).","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:42:16.7325457Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":" 1 of 2 projects are up-to-date for restore.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:42:16.7816652Z","@mt":"[{Tool}] Error: Exited with non-success code: {ExitCode}","@l":"Debug","Tool":"dotnet-restore","ExitCode":1,"SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:42:17.7926833Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj: (0, 0): Project PlantLady is not compatible with net7.0-windows10.0.19041 (.NETCoreApp,Version=v7.0). Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:17.7928007Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets '.NETCoreApp,Version=v7.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:43.5664201Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:43.5664883Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:43.5665079Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:43.5665237Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:43.6580674Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:46.5726455Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:46.5728916Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Project PlantLady is not compatible with net10 (.NETFramework,Version=v1.0). Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:46.5730383Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0) / win7-x86. Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:46.5731484Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Project PlantLady is not compatible with net10 (.NETFramework,Version=v1.0) / win7-x86. Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:46.5732058Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\Properties\\AndroidManifest.xml: (0, 0): AndroidManifest.xml //uses-sdk/@android:targetSdkVersion '29' is less than $(TargetFrameworkVersion) ''. Using API-33 for ACW compilation.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:46.5732628Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:46.5733132Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka com.companyname.plantlady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:46.5733584Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:46.5734013Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka com.companyname.plantlady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:46.5734433Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: Resources\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:46.5734878Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: Resources\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka com.companyname.plantlady:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:46.5735286Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka com.companyname.plantlady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:46.5735793Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka com.companyname.plantlady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:46.5736342Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka com.companyname.plantlady:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:46.5737024Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:46.5737473Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka com.companyname.plantlady:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:46.5737894Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorAccent (aka com.companyname.plantlady:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:46.5738330Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka com.companyname.plantlady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:46.5738814Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka com.companyname.plantlady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:46.5739270Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka com.companyname.plantlady:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:46.5739715Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka com.companyname.plantlady:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:46.5740145Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:46.5740563Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka com.companyname.plantlady:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:46.5740995Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka com.companyname.plantlady:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:46.5741407Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka com.companyname.plantlady:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:46.5741910Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:47.1227852Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj: (0, 0): Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:47.1228882Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj: (0, 0): Project PlantLady is not compatible with net10 (.NETFramework,Version=v1.0). Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:47.1229299Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj: (0, 0): Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0) / win7-x86. Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:47.1229658Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj: (0, 0): Project PlantLady is not compatible with net10 (.NETFramework,Version=v1.0) / win7-x86. Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:47.1229958Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets '.NETFramework,Version=v1.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:47.1236332Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:47.1307397Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Convert project file to SDK style","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.TryConvertProjectConverterStep"} +{"@t":"2022-11-15T22:42:56.1702953Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.1705264Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\91b7723c-9a2b-40c0-a449-0df3bc06aac3\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.1711150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\91b7723c-9a2b-40c0-a449-0df3bc06aac3\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.1712532Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.1747428Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.1902874Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.1905910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.2109937Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.2111187Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9ac54df3-54d1-49a1-a674-6eae3ec29f3e\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.2117296Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9ac54df3-54d1-49a1-a674-6eae3ec29f3e\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.2118946Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.2120227Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.2156216Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.2158957Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.2172176Z","@mt":"Resetting upgrade step {UpgradeStep} because upgrade context has changed significantly since it was initialized","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiPlatformTargetFrameworkUpgradeStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiPlatformTargetFrameworkUpgradeStep"} +{"@t":"2022-11-15T22:42:56.2368264Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.2369455Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fc4b65fd-d969-492a-8ce8-4024760136c1\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.2375906Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fc4b65fd-d969-492a-8ce8-4024760136c1\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.2377508Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.2378792Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.2420483Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.2424609Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.2618387Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.2619648Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7bedc925-ce5b-41d9-b6d8-04b471f0dbd4\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.2628482Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7bedc925-ce5b-41d9-b6d8-04b471f0dbd4\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.2630540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.2632588Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.2714727Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.2717966Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.2729573Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Add TargetFramework for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:42:56.2952098Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.2953225Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ae820232-45b7-45fe-8f30-9185d13cb016\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.2959492Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ae820232-45b7-45fe-8f30-9185d13cb016\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.2961178Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.2962971Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.2999834Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.3002660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.3187099Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.3188302Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1c7889cd-52f3-451f-9e8f-31c196820a15\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.3194468Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1c7889cd-52f3-451f-9e8f-31c196820a15\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.3196129Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.3197447Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.3236486Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.3242116Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.3255961Z","@mt":"TFM needs updated to {TargetTFM}","TargetTFM":"net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiPlatformTargetFrameworkUpgradeStep"} +{"@t":"2022-11-15T22:42:56.3281844Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Add TargetFramework for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:42:56.3282401Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiPlatformTargetFrameworkUpgradeStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:42:56.3296867Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Add TargetFramework for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiPlatformTargetFrameworkUpgradeStep"} +{"@t":"2022-11-15T22:42:56.3505750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.3506900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\62b387f5-460a-416e-bb03-24c424397571\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.3513255Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\62b387f5-460a-416e-bb03-24c424397571\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.3515189Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.3516461Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.3566225Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.3569506Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.3766936Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.3768051Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\dc4c48fd-8fbe-475b-9559-b89105e81371\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.3773782Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\dc4c48fd-8fbe-475b-9559-b89105e81371\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.3775352Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.3776664Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETFramework,Version=v1.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.3897706Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETFramework,Version=v1.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.3901124Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:42:56.3914119Z","@mt":"TFM set to {TargetTFM}","TargetTFM":"net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiPlatformTargetFrameworkUpgradeStep"} +{"@t":"2022-11-15T22:42:56.3937897Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:42:57.3925144Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj: (0, 0): Project PlantLady is not compatible with net7.0-windows10.0.19041 (.NETCoreApp,Version=v7.0). Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:42:57.3926177Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets '.NETCoreApp,Version=v7.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:43:23.8288516Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:43:23.8289437Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:43:23.8289706Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:43:23.8289884Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:43:23.9899359Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:43:26.8545288Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:43:26.8546854Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Project PlantLady is not compatible with net10 (.NETFramework,Version=v1.0). Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:43:26.8547452Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0) / win7-x86. Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:43:26.8548106Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Project PlantLady is not compatible with net10 (.NETFramework,Version=v1.0) / win7-x86. Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:43:26.8548648Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\Properties\\AndroidManifest.xml: (0, 0): AndroidManifest.xml //uses-sdk/@android:targetSdkVersion '29' is less than $(TargetFrameworkVersion) ''. Using API-33 for ACW compilation.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:43:26.8549096Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:43:26.8549560Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka com.companyname.plantlady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:43:26.8550085Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:43:26.8550542Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka com.companyname.plantlady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:43:26.8551037Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: Resources\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:43:26.8551492Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: Resources\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka com.companyname.plantlady:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:43:26.8551925Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka com.companyname.plantlady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:43:26.8552373Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka com.companyname.plantlady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:43:26.8552805Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka com.companyname.plantlady:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:43:26.8553246Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:43:26.8553667Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka com.companyname.plantlady:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:43:26.8554157Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorAccent (aka com.companyname.plantlady:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:43:26.8554629Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka com.companyname.plantlady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:43:26.8555067Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka com.companyname.plantlady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:43:26.8555510Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka com.companyname.plantlady:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:43:26.8555977Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka com.companyname.plantlady:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:43:26.8556399Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:43:26.8556888Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka com.companyname.plantlady:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:43:26.8557339Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka com.companyname.plantlady:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:43:26.8557785Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka com.companyname.plantlady:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:43:26.8558232Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:43:27.5246232Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj: (0, 0): Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:43:27.5247358Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj: (0, 0): Project PlantLady is not compatible with net10 (.NETFramework,Version=v1.0). Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:43:27.5247784Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj: (0, 0): Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0) / win7-x86. Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:43:27.5248204Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj: (0, 0): Project PlantLady is not compatible with net10 (.NETFramework,Version=v1.0) / win7-x86. Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:43:27.5248555Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:43:27.5470384Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Add TargetFramework for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiPlatformTargetFrameworkUpgradeStep"} +{"@t":"2022-11-15T22:43:37.6655336Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.6656641Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b8b956af-2fc2-465b-9813-dac1efaabfb2\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.6660914Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.6670605Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.6671255Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.6859059Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.6860203Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d8ee9ae0-cace-4b67-b255-25f0bdad2487\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.6862826Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.6871930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.6872463Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.7121553Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.7123080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b238cc83-b026-4ef7-8802-4778d8a46637\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.7126696Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.7138689Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.7139408Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.7426430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.7428303Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\824270d3-019c-45f2-be02-b636b8d72c53\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.7433232Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.7456846Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.7458098Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.7479569Z","@mt":"Resetting upgrade step {UpgradeStep} because upgrade context has changed significantly since it was initialized","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiWorkloadUpgradeStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiWorkloadUpgradeStep"} +{"@t":"2022-11-15T22:43:37.7808627Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.7810408Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\860d7c68-a4ed-461f-b51e-7286fa9b8432\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.7814700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.7832315Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.7833211Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.8144917Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.8146690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b941f80a-559b-43c2-b3b0-f27998574542\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.8150750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.8165923Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.8166901Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.8557443Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.8559849Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\588eee7d-e812-4ca3-a471-cb4e175e0712\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.8564828Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.8588283Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.8589569Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.8876632Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.8878407Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\51b35c06-5b59-412e-b601-171d26c8e855\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.8882603Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.8896765Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.8897570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.8911042Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Install .NET MAUI Workload","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:43:37.9227364Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.9229744Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\78f263e6-4dc1-4d91-b42f-082298fe610f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.9234680Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.9255693Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.9256613Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.9510753Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.9512484Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e8a901e6-e794-4b6d-b8f3-0d8834f323a2\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.9517826Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.9539875Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:37.9540792Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:38.9828499Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"Installed Workload Id Manifest Version Installation Source ","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:43:38.9844085Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"----------------------------------------------------------------------------------------------------------------------","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:43:38.9860416Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"ios 16.0.1478/7.0.100 SDK 7.0.100, VS 17.5.33103.201, VS 17.5.33114.351, VS 17.4.33110.190","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:43:38.9874830Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"maccatalyst 15.4.2372/7.0.100 SDK 7.0.100, VS 17.5.33103.201, VS 17.5.33114.351, VS 17.4.33110.190","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:43:38.9889474Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"maui 7.0.49/7.0.100 SDK 7.0.100 ","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:43:38.9903769Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"maui-ios 7.0.49/7.0.100 SDK 7.0.100, VS 17.5.33103.201, VS 17.5.33114.351, VS 17.4.33110.190","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:43:38.9918937Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"maui-windows 7.0.49/7.0.100 SDK 7.0.100, VS 17.5.33103.201, VS 17.5.33114.351, VS 17.4.33110.190","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:43:38.9932924Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"maui-android 7.0.49/7.0.100 VS 17.5.33103.201, VS 17.5.33114.351, VS 17.4.33110.190 ","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:43:38.9948943Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"android 33.0.4/7.0.100 VS 17.5.33103.201, VS 17.5.33114.351, VS 17.4.33110.190 ","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:43:38.9963574Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"maui-maccatalyst 7.0.49/7.0.100 VS 17.5.33103.201, VS 17.5.33114.351, VS 17.4.33110.190 ","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:43:38.9978150Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"wasm-tools-net6 7.0.0/7.0.100 VS 17.5.33103.201 ","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:43:38.9997544Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"runtimes-windows 7.0.0/7.0.100 VS 17.5.33103.201 ","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:43:39.0012303Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"wasm-tools 7.0.0/7.0.100 VS 17.5.33114.351 ","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:43:39.0030097Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"Use `dotnet workload search` to find additional workloads to install.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"} +{"@t":"2022-11-15T22:43:39.0360977Z","@mt":".NET MAUI workloads installed: MauiAndroid, MauiiOS","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiWorkloadUpgradeStep"} +{"@t":"2022-11-15T22:43:39.0381371Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Install .NET MAUI Workload","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:43:39.0381996Z","@mt":"Resetting upgrade step {UpgradeStep} because upgrade context has changed significantly since it was initialized","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:43:39.0382407Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Clean up NuGet package references","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:43:39.0403728Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Clean up NuGet package references","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:43:39.0404236Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:43:39.0427368Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:43:39.0429306Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:43:39.0447610Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:43:39.0448073Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:43:39.0470054Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:43:39.0471205Z","@mt":"Marking package {PackageName} for removal based on package mapping configuration {PackageMapSet}","PackageName":"Xamarin.Forms","PackageMapSet":"Xamarin Legacy Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.PackageMapReferenceAnalyzer"} +{"@t":"2022-11-15T22:43:39.0503364Z","@mt":"Marking package {PackageName} for removal based on package mapping configuration {PackageMapSet}","PackageName":"Xamarin.Essentials","PackageMapSet":"Xamarin Legacy Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.PackageMapReferenceAnalyzer"} +{"@t":"2022-11-15T22:43:39.0553239Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:43:39.0553868Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Remove package 'Xamarin.Forms'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:43:39.0575449Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Remove package 'Xamarin.Forms'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:43:39.0576061Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:43:39.0588804Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Remove package 'Xamarin.Forms'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:43:39.0610780Z","@mt":"Removing outdated package reference: {PackageReference}","PackageReference":"Xamarin.Forms, Version=5.0.0.2083","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:43:39.0631768Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Remove package 'Xamarin.Forms'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:43:39.0844924Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:39.0846073Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\cd169c71-f9bf-4bb5-a068-c8418634d8a5\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:39.0848945Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:39.0858566Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:39.0859199Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:39.1058663Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:39.1059911Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e6b51690-bdbd-4922-9d21-564168a5f5e7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:39.1062609Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:39.1072411Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:39.1072950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:39.1343763Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:39.1345406Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fbe06780-56dc-476c-825e-4c9606a486d4\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:39.1349568Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:39.1363832Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:39.1364639Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:39.1741953Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:39.1743943Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4e2c38d3-5456-4fd2-9be9-5fad9120010c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:39.1748169Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:39.1762440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:39.1763275Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:39.2047218Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:39.2048879Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\33d34d44-c786-4abd-bedc-75bb8d9c87a5\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:39.2053176Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:39.2067439Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:39.2068365Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:39.2331811Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:39.2333499Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9de8587d-eeb2-4015-b4e7-be2badc5a075\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:39.2337629Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:39.2351921Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:39.2352751Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:39.2640717Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:39.2642366Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1d32d575-5c5f-4bab-81c2-09b332e02ac9\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:39.2646711Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:39.2661580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:39.2662401Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:39.2923976Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:39.2925723Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0b8c2bbc-2603-42dd-a797-3e54d12994a7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:39.2929920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:39.2944257Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:39.2945084Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:43:39.2959206Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Remove package 'Xamarin.Essentials'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:43:39.2994001Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Remove package 'Xamarin.Essentials'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:43:39.2995125Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:43:39.2999115Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Remove package 'Xamarin.Essentials'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:43:39.3032972Z","@mt":"Removing outdated package reference: {PackageReference}","PackageReference":"Xamarin.Essentials, Version=1.7.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:43:39.3065264Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Remove package 'Xamarin.Essentials'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:43:39.3098991Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:43:39.3134281Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:43:40.4463965Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj: (0, 0): Project PlantLady is not compatible with net7.0-windows10.0.19041 (.NETCoreApp,Version=v7.0). Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:43:40.4465004Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets '.NETCoreApp,Version=v7.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:07.6259830Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:07.6261220Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:07.6261630Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:07.6261951Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:07.9186360Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:12.5772378Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:12.5773057Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Project PlantLady is not compatible with net10 (.NETFramework,Version=v1.0). Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:12.5773278Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0) / win7-x86. Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:12.5773511Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Project PlantLady is not compatible with net10 (.NETFramework,Version=v1.0) / win7-x86. Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:12.5773685Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\Properties\\AndroidManifest.xml: (0, 0): AndroidManifest.xml //uses-sdk/@android:targetSdkVersion '29' is less than $(TargetFrameworkVersion) ''. Using API-33 for ACW compilation.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:12.5773838Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:12.5773988Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka com.companyname.plantlady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:12.5774139Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:12.5774283Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka com.companyname.plantlady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:12.5774460Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: Resources\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:12.5774605Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: Resources\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka com.companyname.plantlady:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:12.5774759Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka com.companyname.plantlady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:12.5774908Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka com.companyname.plantlady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:12.5775051Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka com.companyname.plantlady:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:12.5775201Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:12.5775348Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka com.companyname.plantlady:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:12.5775528Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorAccent (aka com.companyname.plantlady:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:12.5775694Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka com.companyname.plantlady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:12.5775838Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka com.companyname.plantlady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:12.5775988Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka com.companyname.plantlady:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:12.5776133Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka com.companyname.plantlady:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:12.5776275Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:12.5776417Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka com.companyname.plantlady:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:12.5776597Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka com.companyname.plantlady:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:12.5776757Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka com.companyname.plantlady:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:12.5776945Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:13.0773037Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj: (0, 0): Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:13.0773669Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj: (0, 0): Project PlantLady is not compatible with net10 (.NETFramework,Version=v1.0). Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:13.0773882Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj: (0, 0): Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0) / win7-x86. Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:13.0774099Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj: (0, 0): Project PlantLady is not compatible with net10 (.NETFramework,Version=v1.0) / win7-x86. Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:13.0774285Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:13.0943935Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:44:26.7359459Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:44:26.7360862Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\594b9d78-a8be-43fe-8c6e-dedd9ad2d7fc\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:44:26.7364137Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:44:26.7373655Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:44:26.7374201Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:44:26.7620137Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:44:26.7621529Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\691ceecd-3d30-4237-86ce-81a1a4a895aa\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:44:26.7624615Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:44:26.7641819Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:44:26.7642635Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:44:26.7885492Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:44:26.7886645Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\39ee8080-a61c-455d-83d4-860ba10e40fb\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:44:26.7889653Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:44:26.7903988Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:44:26.7904846Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:44:26.8141305Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:44:26.8142588Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2e0f779e-ab2b-4c7f-aa07-f7cffd2530e6\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:44:26.8145544Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:44:26.8162842Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:44:26.8163671Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:44:26.8477727Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:44:26.8479463Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8a1c15aa-329c-416b-bf11-df1123801031\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:44:26.8482850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:44:26.8499493Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:44:26.8500317Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:44:26.8727143Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:44:26.8728498Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\35b81e35-5caa-4c2a-bb9f-28637825274c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:44:26.8731889Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:44:26.8749181Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:44:26.8750027Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:44:26.9000117Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:44:26.9001300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\823336b0-5381-4a56-8398-304ee3de72e7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:44:26.9004219Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:44:26.9013718Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:44:26.9014254Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:44:26.9229306Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:44:26.9230562Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\eaf45186-4fee-4a11-95b9-c3903e1b57d5\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:44:26.9233625Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:44:26.9251337Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:44:26.9252157Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:44:26.9269510Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:44:26.9312063Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:44:26.9312986Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:44:26.9343896Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:44:26.9344818Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:44:26.9377542Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:44:26.9423071Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3/registration5-gz-semver2/microsoft.dotnet.upgradeassistant.extensions.default.analyzers/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"} +{"@t":"2022-11-15T22:44:27.3282858Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3/registration5-gz-semver2/microsoft.dotnet.upgradeassistant.extensions.default.analyzers/index.json 385ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"} +{"@t":"2022-11-15T22:44:27.3489932Z","@mt":"Reference to .NET Upgrade Assistant analyzer package ({AnalyzerPackageName}, version {AnalyzerPackageVersion}) needs to be added","AnalyzerPackageName":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers","AnalyzerPackageVersion":"0.4.355802","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.UpgradeAssistantReferenceAnalyzer"} +{"@t":"2022-11-15T22:44:27.4196299Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:44:27.4197134Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:44:27.4232467Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:44:27.4233109Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep+PackageManipulationStep`1[[Microsoft.DotNet.UpgradeAssistant.NuGetReference, Microsoft.DotNet.UpgradeAssistant.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:44:27.4246326Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:44:27.4275650Z","@mt":"Adding package reference: {PackageReference}","PackageReference":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.4.355802","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:44:27.4298060Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:44:27.4318904Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:44:27.4330627Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:44:32.7661964Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj: (0, 0): Project PlantLady is not compatible with net7.0-windows10.0.19041 (.NETCoreApp,Version=v7.0). Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:32.7663405Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets '.NETCoreApp,Version=v7.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:55.9488208Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:55.9488908Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:55.9489164Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:55.9489364Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:56.0420027Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:57.5999424Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:57.6000097Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Project PlantLady is not compatible with net10 (.NETFramework,Version=v1.0). Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:57.6000330Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0) / win7-x86. Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:57.6001312Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Project PlantLady is not compatible with net10 (.NETFramework,Version=v1.0) / win7-x86. Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:57.6001567Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\Properties\\AndroidManifest.xml: (0, 0): AndroidManifest.xml //uses-sdk/@android:targetSdkVersion '29' is less than $(TargetFrameworkVersion) ''. Using API-33 for ACW compilation.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:57.6001755Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:57.6001926Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka com.companyname.plantlady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:57.6002097Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:57.6002259Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka com.companyname.plantlady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:57.6002431Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: Resources\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:57.6003126Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: Resources\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka com.companyname.plantlady:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:57.6003340Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka com.companyname.plantlady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:57.6003520Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka com.companyname.plantlady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:57.6003688Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka com.companyname.plantlady:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:57.6003870Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:57.6004039Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka com.companyname.plantlady:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:57.6004204Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorAccent (aka com.companyname.plantlady:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:57.6004899Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka com.companyname.plantlady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:57.6005119Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka com.companyname.plantlady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:57.6005290Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka com.companyname.plantlady:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:57.6005460Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka com.companyname.plantlady:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:57.6005621Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:57.6005791Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka com.companyname.plantlady:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:57.6006443Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka com.companyname.plantlady:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:57.6006659Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka com.companyname.plantlady:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:57.6006842Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:57.9514006Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj: (0, 0): Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:57.9514686Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj: (0, 0): Project PlantLady is not compatible with net10 (.NETFramework,Version=v1.0). Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:57.9514918Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj: (0, 0): Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0) / win7-x86. Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:57.9515892Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj: (0, 0): Project PlantLady is not compatible with net10 (.NETFramework,Version=v1.0) / win7-x86. Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:57.9516177Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:44:57.9645129Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:45:04.2184152Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.2186299Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6fd71c90-19fa-42af-a6b3-319f96952a09\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.2189246Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.2199963Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.2200550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.2412352Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.2413435Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5e257014-ec95-478a-807e-30bbf3ec9302\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.2415744Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.2427876Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.2428671Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.2716697Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.2718425Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\99793af7-75e3-4a72-958f-1d6b1941cb5c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.2721639Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.2738183Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.2739078Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.3042762Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.3044257Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d5f4cd71-5f1e-4860-8b7b-a534a96b8616\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.3047447Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.3063586Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.3064475Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.3527576Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.3529531Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7ad3940b-ec46-4b23-96f1-e32ec726414f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.3533000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.3550120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.3551040Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.3854980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.3856479Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e39dae3d-2834-418a-a815-b11b12e7dc35\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.3859628Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.3875561Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.3876414Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.4129642Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.4131407Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5b669fcf-db12-4747-83c4-5a59ef6ea509\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.4134788Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.4150012Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.4150852Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.4422598Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.4424108Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\748499f3-302b-4b89-92da-24d1a10fd719\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.4429165Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.4444641Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.4445610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.4460405Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:04.4518295Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:45:04.4519797Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:45:04.4557191Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:04.4557997Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:04.4600377Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:45:04.4602018Z","@mt":"{Project} is not a VB class library","@l":"Debug","Project":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.VisualBasic.MyDotAnalyzer"} +{"@t":"2022-11-15T22:45:04.4602607Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:45:04.4637234Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:04.4637920Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:04.4683249Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:45:04.4941186Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.4942959Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\77700f48-6446-4888-a7a0-96df6a098c06\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.4946544Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.4965835Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.4966962Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.5212031Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.5213449Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a3b144ed-300a-48ca-8920-51a5875f7a9f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.5216797Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.5232343Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.5233211Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.5248118Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:45:04.5288704Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:04.5289463Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:04.5348683Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:45:04.5584839Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.5586578Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\123914c7-a6db-49ca-99e4-6a0864f01a0b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.5589781Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.5605016Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.5605866Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.5852743Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.5854287Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4440ef5c-8bab-4c41-a192-86357d024d20\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.5857682Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.5873073Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.5873915Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.5888625Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:45:04.5934504Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:04.5935270Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:04.5989479Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:45:04.6310131Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.6311952Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4956a9be-9e97-4b92-a943-b45d02ee0924\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.6315331Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.6330315Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.6331109Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.6341113Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:45:04.6385607Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Clean up NuGet package references","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:45:04.6434439Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Clean up NuGet package references","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"} +{"@t":"2022-11-15T22:45:04.6466380Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:04.6466777Z","@mt":"Resetting upgrade step {UpgradeStep} because upgrade context has changed significantly since it was initialized","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.SetTFMStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.SetTFMStep"} +{"@t":"2022-11-15T22:45:04.6466940Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Update TFM","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:04.6578035Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.6578825Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fee65db4-c83a-4271-8121-1dcb0eeba521\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.6580217Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.6586243Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.6586553Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.6723356Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.6724085Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\257b2797-f22d-4c4a-a33a-0776bbea773f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.6725836Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.6733089Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.6733464Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.6740083Z","@mt":"Skip minimum dependency check because .NET MAUI support multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:04.6765687Z","@mt":"Recommending executable TFM {TFM} because the project builds to an executable","TFM":"net7.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.ExecutableTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:04.6780811Z","@mt":"Project {Name} is of type .NET MAUI Target:iOS, migration to .NET MAUI recommends net7.0-ios.","Name":"PlantLady.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:04.6794815Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Update TFM","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:04.6795136Z","@mt":"Resetting upgrade step {UpgradeStep} because upgrade context has changed significantly since it was initialized","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:45:04.6795341Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Update NuGet Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:04.6806102Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Update NuGet Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:04.6806378Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:04.6816342Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:45:04.6817738Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:45:04.6831811Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:04.6832063Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:04.6849917Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:45:04.6850559Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:45:04.6861536Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:04.6861765Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:04.6872132Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:45:04.6874433Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.4.355802","PackagePath":"C:\\Users\\Sweeky Satpathy\\.nuget\\packages\\Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers\\0.4.355802\\Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers.0.4.355802.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"} +{"@t":"2022-11-15T22:45:04.7097638Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers.0.4.355802","TargetFrameworks":["Any,Version=v0.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"} +{"@t":"2022-11-15T22:45:04.7100601Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.4.355802","TargetFramework":["net7.0-ios"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"} +{"@t":"2022-11-15T22:45:04.7101255Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:45:04.7149939Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:04.7150793Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:04.7207850Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:45:04.7208674Z","@mt":"Reference to .NET Upgrade Assistant analyzer package ({AnalyzerPackageName}) already exists","@l":"Debug","AnalyzerPackageName":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.UpgradeAssistantReferenceAnalyzer"} +{"@t":"2022-11-15T22:45:04.7209124Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:45:04.7255251Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:04.7255955Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:04.7312514Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:45:04.7313737Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:45:04.7362103Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:04.7362880Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:04.7414496Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:45:04.7416033Z","@mt":"{Project} is not a VB class library","@l":"Debug","Project":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.VisualBasic.MyDotAnalyzer"} +{"@t":"2022-11-15T22:45:04.7416708Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:45:04.7456167Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:04.7457281Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:04.7507239Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:45:04.7791573Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.7793904Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7e01b0a1-12ea-427e-b52d-56e891048f34\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.7798134Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.7814473Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.7815347Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.8090538Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.8092086Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e93d7e52-d054-4f0e-9e09-0a43b8f2b3d7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.8095586Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.8112710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.8113622Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.8128783Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:45:04.8177984Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:04.8178784Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:04.8226995Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:45:04.8481298Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.8483241Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b9796994-53c5-45c9-94cc-bb80affe0775\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.8486579Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.8502088Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.8502958Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.8783183Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.8784714Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ec1f7fcc-5ca1-4200-baeb-2b7335a0ce86\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.8788146Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.8805193Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.8806113Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.8821176Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:45:04.8874642Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:04.8875436Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:04.8929470Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:45:04.9194450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.9196110Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2f4ce352-3060-4d30-9fb0-4257492d2bb8\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.9199740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.9330738Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.9332153Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.9344369Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:45:04.9392258Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Update NuGet Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:45:04.9435080Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Update NuGet Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"} +{"@t":"2022-11-15T22:45:04.9451635Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:04.9567397Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.9568226Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\bc65e583-479c-45b7-94c3-8f96769d3097\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.9570590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.9576860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.9577177Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.9743860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.9744936Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b6580562-c295-48d5-b760-facdbb7aac6b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.9747240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.9757966Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.9758575Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:04.9768357Z","@mt":"Resetting upgrade step {UpgradeStep} because upgrade context has changed significantly since it was initialized","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep"} +{"@t":"2022-11-15T22:45:04.9769068Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Add Project Properties for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:05.0088584Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:05.0090801Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8a29a384-36ac-4008-8427-67b19aa511f1\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:05.0094450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:05.0110875Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:05.0111715Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:05.0414375Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:05.0415873Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7275cbcb-133f-4142-809d-bad3ac448213\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:05.0419349Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:05.0436019Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:05.0436938Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:05.0451938Z","@mt":".NET MAUI Project Properties need to be added.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep"} +{"@t":"2022-11-15T22:45:05.0500009Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Add Project Properties for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:05.0500775Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:05.0520046Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Add Project Properties for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep"} +{"@t":"2022-11-15T22:45:05.0878457Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:05.0880334Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\851e640e-1c26-44db-9e86-51da16f1789d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:05.0883680Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:05.0899173Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:05.0900058Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:05.1189795Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:05.1191336Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a89388f2-2353-4489-83db-53e1330a2779\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:05.1194625Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:05.1209733Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:05.1210617Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:05.1251342Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"MtouchArch","PropertyValue":"x86_64","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:45:05.1316678Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"MtouchArch","PropertyValue":"x86_64","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:45:05.1361748Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"MtouchArch","PropertyValue":"ARM64","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:45:05.1379678Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"MtouchArch","PropertyValue":"ARM64","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:45:05.1403290Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"MtouchEnableSGenConc","PropertyValue":"true","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:45:05.1424898Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"IPhoneResourcePrefix","PropertyValue":"Resources","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:45:05.1446960Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"RuntimeIdentifiers","PropertyValue":"iossimulator-x64;ios-arm64;","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:45:05.1458991Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"EnableSGenConc","PropertyValue":"true","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:45:05.1474947Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"ProvisioningType","PropertyValue":"automatic","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:45:05.1490684Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"MtouchLink","PropertyValue":"None","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:45:05.1504315Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"MtouchLink","PropertyValue":"None","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:45:05.1517709Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"MtouchLink","PropertyValue":"None","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:45:05.1530608Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"MtouchDebug","PropertyValue":"true","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:45:05.1542603Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"MtouchDebug","PropertyValue":"true","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:45:05.1554813Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"MtouchInterpreter","PropertyValue":"-all","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:45:05.1567348Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"} +{"@t":"2022-11-15T22:45:06.3185310Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj: (0, 0): Project PlantLady is not compatible with net7.0-windows10.0.19041 (.NETCoreApp,Version=v7.0). Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:45:06.3186425Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.UWP\\PlantLady.UWP.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '..\\PlantLady\\PlantLady.csproj' targets 'net7.0-android;net7.0-ios'. It cannot be referenced by a project that targets '.NETCoreApp,Version=v7.0'.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:45:24.5812089Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:45:24.5813141Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:45:24.5813568Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:45:24.5813881Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:45:24.7467043Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: C:\\code\\PlantLady\\PlantLady\\PlantLady\\PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:45:27.2936718Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:45:27.2938616Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Project PlantLady is not compatible with net10 (.NETFramework,Version=v1.0). Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:45:27.2939421Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0) / win7-x86. Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:45:27.2940092Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj: (0, 0): Project PlantLady is not compatible with net10 (.NETFramework,Version=v1.0) / win7-x86. Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:45:27.2940686Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\Properties\\AndroidManifest.xml: (0, 0): AndroidManifest.xml //uses-sdk/@android:targetSdkVersion '29' is less than $(TargetFrameworkVersion) ''. Using API-33 for ACW compilation.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:45:27.2941254Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:45:27.2941808Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka com.companyname.plantlady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:45:27.2942387Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:45:27.2943014Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/actionBarSize (aka com.companyname.plantlady:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:45:27.2943543Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: Resources\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:45:27.2944042Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: Resources\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka com.companyname.plantlady:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:45:27.2944569Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka com.companyname.plantlady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:45:27.2945066Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka com.companyname.plantlady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:45:27.2945551Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\dotnet\\packs\\Microsoft.Android.Sdk.Windows\\33.0.4\\tools\\Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka com.companyname.plantlady:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:45:27.2946095Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:45:27.2946614Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka com.companyname.plantlady:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:45:27.2947187Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/colorAccent (aka com.companyname.plantlady:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:45:27.2947705Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka com.companyname.plantlady:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:45:27.2948184Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka com.companyname.plantlady:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:45:27.2948681Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka com.companyname.plantlady:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:45:27.2949178Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka com.companyname.plantlady:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:45:27.2949743Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): resource attr/colorPrimary (aka com.companyname.plantlady:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:45:27.2950234Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka com.companyname.plantlady:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:45:27.2950716Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka com.companyname.plantlady:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:45:27.2951207Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\obj\\Debug\\net7.0-android\\lp\\8\\jl\\res\\values\\styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka com.companyname.plantlady:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:45:27.2951794Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.Android\\PlantLady.Android.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:45:27.7664064Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj: (0, 0): Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0). Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:45:27.7664914Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj: (0, 0): Project PlantLady is not compatible with net10 (.NETFramework,Version=v1.0). Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:45:27.7665204Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj: (0, 0): Package Xamarin.Essentials 1.7.0 is not compatible with net10 (.NETFramework,Version=v1.0) / win7-x86. Package Xamarin.Essentials 1.7.0 supports:\r\n - monoandroid10.0 (MonoAndroid,Version=v10.0)\r\n - netstandard1.0 (.NETStandard,Version=v1.0)\r\n - netstandard2.0 (.NETStandard,Version=v2.0)\r\n - tizen40 (Tizen,Version=v4.0)\r\n - uap10.0.16299 (UAP,Version=v10.0.16299)\r\n - xamarinios10 (Xamarin.iOS,Version=v1.0)\r\n - xamarinmac20 (Xamarin.Mac,Version=v2.0)\r\n - xamarintvos10 (Xamarin.TVOS,Version=v1.0)\r\n - xamarinwatchos10 (Xamarin.WatchOS,Version=v1.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:45:27.7665442Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj: (0, 0): Project PlantLady is not compatible with net10 (.NETFramework,Version=v1.0) / win7-x86. Project PlantLady supports:\r\n - net7.0-android33.0 (.NETCoreApp,Version=v7.0)\r\n - net7.0-ios16.0 (.NETCoreApp,Version=v7.0)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:45:27.7665644Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file 'C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj' with message: C:\\Program Files\\dotnet\\sdk\\7.0.100\\Microsoft.CSharp.CurrentVersion.targets: (129, 9): Could not find rule set file \"ManagedMinimumRules.ruleset\".","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"} +{"@t":"2022-11-15T22:45:27.7877315Z","@mt":"Added .NET MAUI Project Properties successfully","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep"} +{"@t":"2022-11-15T22:45:27.7899800Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Add Project Properties for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep"} +{"@t":"2022-11-15T22:45:37.4302533Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.4311820Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7848e0ab-f2a7-4599-89aa-9d6f163b3bde\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.4316826Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.4326814Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.4327479Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.4524630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.4525587Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8f35bc09-deb0-46b0-96a6-5a38e6c19c7f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.4527729Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.4537615Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.4538206Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.4771517Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.4772303Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\61d6fc85-0e63-48d9-b6a2-e76cb008625b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.4774368Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.4780073Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.4780419Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.4913303Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.4914099Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e2151067-1d51-4cd8-9c9f-05fc79fbb7ab\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.4915732Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.4969200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.4970171Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.5095911Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.5096695Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\99611ed2-a6ca-4c86-ab6c-946a7c113d8f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.5098611Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.5105027Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.5105539Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.5215474Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.5216366Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\da8cb3b1-d535-47c5-8fb2-6dc2856298ef\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.5219253Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.5228857Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.5229524Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.5239206Z","@mt":"Resetting upgrade step {UpgradeStep} because upgrade context has changed significantly since it was initialized","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:45:37.5348489Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.5349571Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\656dbc02-bb91-4f46-9566-984eadc04308\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.5351602Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.5359908Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.5360371Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.5491759Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.5492654Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f906f150-221b-4385-9c18-dcbff0376ac6\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.5494439Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.5500250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.5500592Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.5648412Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.5649104Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\321d90af-c1b9-4008-ba6f-6233a257af21\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.5650860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.5655921Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.5656253Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.5768584Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.5769231Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\af795126-0ff5-44b0-81bb-b3e1fb306926\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.5770915Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.5775868Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.5776145Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.5910326Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.5911245Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\51393a9c-7f69-46dd-8946-b79c0f503e70\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.5913218Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.5920029Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.5920490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.6059629Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.6060416Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\159d29e7-6b96-4479-bd9c-235a39d9af73\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.6062154Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.6096169Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.6097137Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.6104989Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Add template files","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:37.6263949Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.6264690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f4fbf5f0-cfda-472a-b5ce-52a26f2b1523\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.6266200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.6271136Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.6271416Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.6383444Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.6384077Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5bafb6f2-57f1-4b71-82e1-0e3ea5a81ac2\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.6385604Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.6390794Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.6391079Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.6535975Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.6536875Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4f69c071-29b8-4a1e-b230-a952a614b6ae\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.6539219Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.6548048Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.6548544Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.6692306Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.6693146Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\74599a72-705c-46c7-bb22-0f0f0b03d604\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.6695345Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.6701104Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.6701419Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.6976877Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.6977715Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8572a790-4cdc-45ce-bf95-06962b082aaa\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.6979808Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.6986371Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.6986718Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.7093659Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.7094363Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1b129893-11ef-49ce-ae4d-79ce4d9bb7bd\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.7096058Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.7101037Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.7101328Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.7106746Z","@mt":"{FilesNeededCount} expected template items needed","FilesNeededCount":0,"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"} +{"@t":"2022-11-15T22:45:37.7118349Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Add template files","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:37.7223480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.7224359Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\17d8bd1c-58cf-48a1-b89f-84f569ec7bc8\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.7226145Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.7232661Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.7232997Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.7351581Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.7352471Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b5e73d80-b042-41f2-bc9d-62ad792a9b41\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.7354529Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.7365878Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.7366512Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.7453882Z","@mt":"Resetting upgrade step {UpgradeStep} because upgrade context has changed significantly since it was initialized","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.XamlNamespaceUpgradeStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.XamlNamespaceUpgradeStep"} +{"@t":"2022-11-15T22:45:37.7454684Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Update XAML Namespaces","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:37.7470392Z","@mt":".NET MAUI project does not contain any XAML files","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.XamlNamespaceUpgradeStep"} +{"@t":"2022-11-15T22:45:37.7487328Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Update XAML Namespaces","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:37.7488057Z","@mt":"Resetting upgrade step {UpgradeStep} because upgrade context has changed significantly since it was initialized","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Extensions.WCFUpdater.WCFUpdateStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.WCFUpdater.WCFUpdateStep"} +{"@t":"2022-11-15T22:45:37.7488370Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Update WCF service to CoreWCF (Preview)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:37.7536055Z","@mt":"Did not find .config file that configures system.serviceModel. The project is not applicable for automated WCF update. No more work needs to be done and this step is complete.","@l":"Warning","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.WCFUpdater.WCFUpdateStep"} +{"@t":"2022-11-15T22:45:37.7547381Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Update WCF service to CoreWCF (Preview)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:37.7679082Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.7680038Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\fe697854-e0e0-46b8-8c3d-1728e4c7997d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.7682177Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.7690276Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.7690771Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.7805692Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.7806427Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ad4a5bd4-f209-4710-834e-40ca2a834d15\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.7808127Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.7816248Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.7818272Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.7958054Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.7958766Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\bd4087e0-9850-4193-8bd1-510cd573fe0b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.7960572Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.7966970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.7967467Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.8166904Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.8167680Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\61f869bd-7d62-4237-a730-b449c935f842\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.8169952Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.8178522Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.8179066Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.8303170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.8318001Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7ffddf8d-71ee-4c48-809f-816758b644e0\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.8320314Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.8331147Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.8331805Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.8476383Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.8477226Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0a0a52f0-5f4d-44e9-94a8-8e13482d8255\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.8478918Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.8484208Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.8484506Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.8723197Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.8724195Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d129960e-d658-4a9d-9009-5a1bf9a7a6aa\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.8726386Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.8734699Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.8735204Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.8883314Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.8884204Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\50d661cb-d3d2-4cdc-8c0b-3a186d7c8a0a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.8886524Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.8912696Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.8913364Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.9032209Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.9032915Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d0013383-f5da-4dab-8818-3c7b3d60ba1f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.9034726Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.9041098Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.9041527Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.9149365Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.9150037Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3a262760-84cc-4db1-9421-38057daf1e51\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.9151684Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.9156597Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.9156900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.9272512Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.9273530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\dda34d3a-4610-4913-829f-2e6a22f7116c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.9275524Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.9284229Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.9284699Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.9419444Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.9420192Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\da95a3a9-aff1-4083-b7dc-922da72a9da2\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.9422054Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.9429985Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.9430404Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.9575978Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.9577032Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\487c80fe-276f-49b4-81e4-39d57f172ce4\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.9579281Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.9588743Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.9589174Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.9727067Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.9728115Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\425fa6ec-38b3-4416-8747-ba01c76466a2\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.9730581Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.9738936Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:37.9739370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.0013216Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.0014132Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\89c49d5f-6450-4468-a849-73a7bee6fe92\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.0016145Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.0025093Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.0025596Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.0214846Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.0216908Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\01e44f49-4ad1-4817-968f-924c4aa1d094\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.0223009Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.0301882Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.0304001Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.0339170Z","@mt":"Resetting upgrade step {UpgradeStep} because upgrade context has changed significantly since it was initialized","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.CodeFixerStep:UA0002","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:45:38.0340579Z","@mt":"Resetting upgrade step {UpgradeStep} because upgrade context has changed significantly since it was initialized","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:45:38.0341687Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Update source code","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:38.0378576Z","@mt":"Opening project {ProjectPath}","@l":"Debug","ProjectPath":"C:\\code\\PlantLady\\PlantLady\\PlantLady.iOS\\PlantLady.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:45:38.0379517Z","@mt":"Running analyzers on {ProjectName}","ProjectName":"PlantLady.iOS","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.RoslynDiagnosticProvider"} +{"@t":"2022-11-15T22:45:38.0837342Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.0840473Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\98ff2f21-9c10-4683-98ff-1ff5bea4482e\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.0845483Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.0863107Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.0864328Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.1208062Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.1210091Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\cac278f0-335e-43f5-a676-74df92ed75c0\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.1218904Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.1246354Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.1247847Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.1621310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.1624798Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3478fd13-9f00-4f26-bf80-cbd8043660e3\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.1631391Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.1660867Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.1662774Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.1945698Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.1950554Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ac1d55aa-969f-46e1-b4b6-c7e33e302ece\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.1956184Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.1973204Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.1974173Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.2136081Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.2137165Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\dec67208-530b-4940-8b1d-39f68a37490c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.2139690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.2149432Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.2149965Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.2280456Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.2281457Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6e3a6608-2c5c-4ea5-8699-63f1bb5efea2\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.2284213Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.2294941Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.2295547Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.2467141Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.2467956Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\289a9277-e2b9-4a9d-a085-a81cff031cf5\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.2469899Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.2475464Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.2475784Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.2612778Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.2613709Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a61f955e-65f3-4345-a65a-f28f095f582a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.2616048Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.2647600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.2648268Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.2776911Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.2777652Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\28ad914c-8f26-4741-bd87-a728eb0666f7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.2779540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.2784964Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.2785292Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.2964082Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.2965533Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\51616b57-4fbb-4908-9a51-0cdbdbaeff36\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.2967831Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.2976594Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.2977207Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.3115500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.3116339Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c52f5272-8a0e-4053-b384-a84b755bdadc\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.3118883Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.3128248Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.3128806Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.3254165Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.3255103Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\5e8cd8a0-aefb-45a7-8bd4-9f567c44f172\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.3257668Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.3267809Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.3268288Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.3393425Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.3394799Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f0f4d96c-a5cc-49b6-a7c0-71e357b4f331\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.3397376Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.3415225Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.3416427Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.3546099Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.3547013Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\75d6baef-e03b-487b-baa4-e025d688d38c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.3548928Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.3554683Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.3555008Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.3685281Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.3686243Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3434e90f-1e57-4b84-acd5-fc960ae1b74b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.3688612Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.3698420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.3699168Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.3837899Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.3838951Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1fd22c28-17a6-4ad1-8ca6-0f66aaf71bd0\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.3841982Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.3877852Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.3879264Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.4034212Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.4035259Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\780806d0-28da-45f5-8264-3a0e5351c615\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.4037819Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.4047255Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.4047789Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.4179478Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.4180246Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\f3218044-4325-4cb1-8d46-c22d14721d2f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.4182494Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.4191442Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.4191914Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.4325534Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.4326291Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\abb32126-1e9f-42c0-b7f6-ccba532b14e3\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.4328208Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.4333922Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.4334464Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.4472847Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.4473726Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\62b49eac-5a83-465a-8690-8113fc2de71c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.4475839Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.4482879Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.4483272Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.4625703Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.4626610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0bd32149-aab2-496d-a267-3916f1171617\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.4628549Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.4634741Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.4635190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.4784433Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.4785584Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\aedf2d88-bbbb-4431-98c4-caf8117093f3\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.4787929Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.4797794Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.4798426Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.4943621Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.4944714Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\581b54ce-6595-4e97-a932-51a46f779650\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.4948041Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.4957232Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.4957681Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.5095269Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.5096024Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\10c30263-6e2c-4975-877c-5390666ef553\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.5098430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.5129838Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.5130800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.5283923Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.5284854Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ddd366dd-ac72-417c-a1df-4e5f4b0f4285\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.5286960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.5295844Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.5296331Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.5452201Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.5453042Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\76f575f9-a85d-4e74-a8d2-13fd384a9859\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.5455108Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.5466887Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.5467448Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.5617776Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.5618750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\35f35393-2b13-469a-8442-c0131ea842ed\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.5621113Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.5631375Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.5631868Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.5768991Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.5769922Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\151e49d5-e2ca-4d60-bb20-d78a00b6695b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.5772150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.5781158Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.5782038Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.5964467Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.5965528Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3dcdf78c-8d9e-49e1-b481-c994cc4f4f1e\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.5967525Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.5974245Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.5974621Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.6132029Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.6132992Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b544e2b3-96b7-4916-bb50-436107e6bc96\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.6135397Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.6145806Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.6146350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.6315576Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.6316838Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\82d0412e-db43-428c-944f-7555aef44d18\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.6319724Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.6333552Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.6334197Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.6519513Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.6520576Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1b9a26a0-a787-4a54-9310-2cbf82dbb2d7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.6523754Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.6571271Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.6572489Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:38.8628068Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-11-15T22:45:39.3018313Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-11-15T22:45:39.3181677Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-11-15T22:45:39.3189417Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-11-15T22:45:39.3242182Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-11-15T22:45:39.3432726Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-11-15T22:45:39.3448165Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-11-15T22:45:39.4175093Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-11-15T22:45:39.4194762Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-11-15T22:45:39.4205871Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-11-15T22:45:39.4222869Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-11-15T22:45:39.4256210Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-11-15T22:45:39.4271014Z","@mt":"Unable to resolve assembly {AssemblyName}","@l":"Debug","AssemblyName":"Microsoft.CodeAnalysis, Version=4.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildRegistrationStartup"} +{"@t":"2022-11-15T22:45:39.6101364Z","@mt":"Identified {DiagnosticCount} diagnostics in project {ProjectName}","DiagnosticCount":0,"ProjectName":"PlantLady.iOS","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.RoslynDiagnosticProvider"} +{"@t":"2022-11-15T22:45:39.6141208Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0001","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:45:39.6141853Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0002","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:45:39.6142132Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0005","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:45:39.6142369Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0006","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:45:39.6142652Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0007","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:45:39.6142908Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0008","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:45:39.6143136Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0010","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:45:39.6143360Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0012","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:45:39.6143592Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0014","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:45:39.6143818Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0015","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:45:39.6144326Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"[UA306_A1, UA306_A2, UA306_A3, UA306_A4, UA306_B, UA306_C, UA306_D, UA306_E, UA306_F, UA306_G, UA306_H, UA306_I]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:45:39.6144583Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA307","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:45:39.6144804Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA309","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:45:39.6145010Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA310","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:45:39.6145229Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA311","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:45:39.6145446Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA312","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:45:39.6145699Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"[UA313, UA314]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:45:39.6145929Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"[UA315_A, UA315_C, UA315_B]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"} +{"@t":"2022-11-15T22:45:39.6147071Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Update source code","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:39.6390351Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.6391753Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d587fc45-d235-4d2a-ad84-6be9a3d336fe\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.6394604Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.6401661Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.6402057Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.6571793Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.6572802Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\8da47e0f-3c03-4167-b8f7-3cee51eb118d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.6575100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.6587365Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.6588018Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.6866636Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.6867668Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0ff92806-122e-4605-933e-96b091c2c365\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.6871087Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.6880859Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.6881265Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.7011152Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.7012033Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4bf5bd4c-bcd7-4086-90a6-cdadf7b6ecb3\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.7014310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.7027091Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.7027769Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.7187379Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.7188375Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4d085383-1f99-4e24-a884-6643f7b83482\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.7190507Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.7201386Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.7202050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.7339577Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.7340510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4909600d-952d-4ac0-b9f8-b7977595a127\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.7342395Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.7349242Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.7349781Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.7496278Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.7497131Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\316ecead-333f-4c22-a1de-9c3f82113559\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.7499714Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.7747130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.7748107Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.7865096Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.7865753Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2bece689-f2fb-4e80-afa3-ba6f83af7ce4\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.7867626Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.7873270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.7873594Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.8014435Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.8015184Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d52cc624-1c94-47b3-804a-b36a3392c824\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.8017103Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.8025387Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.8025813Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.8175323Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.8176089Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\bbacb204-26af-4f9c-a63a-a48505f8bafa\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.8178361Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.8187630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.8188492Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.8333282Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.8334125Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\e86c5b60-eb3d-42a5-9e37-41459dc93834\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.8336622Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.8349385Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.8349886Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.8552634Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.8553951Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\882b471c-1c1d-409f-99d1-0e5f930a8c06\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.8557154Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.8567565Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.8568170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.8774240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.8776104Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7cbc023f-f0f8-4606-8f2a-d95ab7e971a0\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.8778776Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.8788105Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.8788806Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.9026503Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.9028095Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ef48d4e1-1189-4cc6-a9ff-5d6896bbc288\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.9031074Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.9041237Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.9041830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.9263951Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.9265563Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b2ae5066-01df-410d-ad97-3e901fa40fcc\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.9269931Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.9333536Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.9335028Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.9569077Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.9570622Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\cb2755a3-2e85-4260-9552-da6b4efdd1dd\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.9573854Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.9586971Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.9587652Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.9846989Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.9848525Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ec452962-e72a-4d7d-a2da-45f352abd45e\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.9851930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.9866730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:39.9867562Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.0098616Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.0100536Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\50c483d2-3b45-41b8-a616-86f19e9461cf\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.0104349Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.0126967Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.0128038Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.0392964Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.0394648Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3da0d207-2338-4dcb-aac7-7bcd47fcb760\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.0398659Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.0412391Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.0413226Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.0663199Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.0665503Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\795e6e7c-9a9f-40c6-aac7-6e2c9bd642a3\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.0670071Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.0682401Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.0683066Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.0950269Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.0951693Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b2dd4df4-2ce9-4a3d-a4f4-0c80fafc53ba\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.0955107Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.0971299Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.0972134Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.1222304Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.1223658Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\1d7ad21c-5f87-4288-85d1-dc43b6931517\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.1227438Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.1243827Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.1244764Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.1522289Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.1523079Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\ce521929-3029-447b-b5a3-2eb10d2fe466\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.1525244Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.1564125Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.1565286Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.1745170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.1746018Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2d94c77b-643c-4169-932b-f58c1474d265\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.1748224Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.1756977Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.1757438Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.1925705Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.1926420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\36c6e63e-5506-4d70-a427-f56fed23d450\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.1928358Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.1943544Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.1944267Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.2090183Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.2090835Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c88c2d37-adfc-46aa-8f06-1d06a47a053b\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.2092305Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.2098895Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.2099297Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.2217083Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.2217727Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b5cd0a39-9020-4a7e-9b67-bca320188c9f\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.2219397Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.2224295Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.2224574Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.2332054Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.2332717Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b1304e4b-6fe2-4629-b9dc-5a356e2d0346\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.2334419Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.2344291Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.2344706Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.2461871Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.2462495Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b60e0f1a-163b-45ec-829f-89276cd10c7e\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.2464229Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.2469101Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.2469414Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.2651090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.2652557Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c2bb8a36-9f25-4ecc-908a-9ce73d167bce\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.2656104Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.2667042Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.2667610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.2933295Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.2935033Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\230f5dce-9366-4ef3-bc5b-e7be517b6532\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.2939189Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.2958307Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.2959474Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.3291534Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.3293220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\beec00bc-7a8f-482e-bf97-09306667594e\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.3297287Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.3312737Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.3313749Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.3335604Z","@mt":"Resetting upgrade step {UpgradeStep} because upgrade context has changed significantly since it was initialized","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep"} +{"@t":"2022-11-15T22:45:40.3336428Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Move to next project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:40.3406727Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Move to next project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:40.3407810Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:40.3430049Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Move to next project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep"} +{"@t":"2022-11-15T22:45:40.3455395Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Move to next project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep"} +{"@t":"2022-11-15T22:45:40.6727916Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.6729408Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a564b898-81cd-470e-85a0-0ce15d362dd4\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.6735849Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\a564b898-81cd-470e-85a0-0ce15d362dd4\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:40.6737298Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:42.1734259Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:43.2566559Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:43.2580897Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:43.2886472Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:43.2889023Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7d600a47-6e77-4a4b-bbe4-0f7514fb50c4\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:43.2900370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7d600a47-6e77-4a4b-bbe4-0f7514fb50c4\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:43.2903317Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:43.2920524Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:43.3565089Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:43.3579310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:43.3621169Z","@mt":"Skip minimum dependency check because Windows App SDK cannot work with targets lower than already recommended TFM.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:43.3653982Z","@mt":"Recommending Windows TFM {TFM} because the project either has Windows-specific dependencies or builds to a WinExe","TFM":"net7.0-windows10.0.19041","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsSdkTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:45.5934872Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.5935966Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\cf6487db-4a40-4eec-8f5d-91712f7804d6\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.5939551Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.5950494Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.5951170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.6212120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.6212941Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\246419f5-73c9-473c-8d65-b3a1762cafda\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.6215449Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.6222095Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.6222514Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.6229846Z","@mt":"Skip minimum dependency check because .NET MAUI support multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:45.6241141Z","@mt":"Recommending executable TFM {TFM} because the project builds to an executable","TFM":"net7.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.ExecutableTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:45.6256208Z","@mt":"Project {Name} is of type .NET MAUI Target:Android, migration to .NET MAUI recommends net7.0-android.","Name":"PlantLady.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:45.6268720Z","@mt":"Project {Name} is of type .NET MAUI Target: MAUI head, migration to .NET MAUI requires to be multiplatform","Name":"PlantLady.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:45.6953389Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.6954312Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\adafa03a-ca38-42e3-bd4c-5e16c4791cf7\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.6956687Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.6967343Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.6968019Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.7220146Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.7221167Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4bf00254-90a8-4b7f-902f-51b11ac8e4b5\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.7223388Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.7233208Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.7233779Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.7243688Z","@mt":"Skip minimum dependency check because .NET MAUI support multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:45.7261477Z","@mt":"Recommending executable TFM {TFM} because the project builds to an executable","TFM":"net7.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.ExecutableTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:45.7284199Z","@mt":"Project {Name} is of type .NET MAUI Target:iOS, migration to .NET MAUI recommends net7.0-ios.","Name":"PlantLady.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:45.7299068Z","@mt":"Project {Name} is of type .NET MAUI Target: MAUI head, migration to .NET MAUI requires to be multiplatform","Name":"PlantLady.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:45.7309596Z","@mt":"Could not merge incoming TFM update from {Current} to {Next}","@l":"Warning","Current":"net7.0-ios","Next":"net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.TargetFrameworkSelector"} +{"@t":"2022-11-15T22:45:45.7491533Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.7540498Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\09bf396a-7a30-47a6-ae8b-1e3a694f8ab2\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.7543551Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.7607115Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.7608000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.7609136Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.7609582Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.7851461Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.7852414Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\d0dfcfc9-c1e9-4595-a363-31bab5b94c4a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.7854587Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.7868347Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.7869046Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.7870933Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.7871564Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.7884315Z","@mt":"Skip minimum dependency check because .NET MAUI support multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:45.7913822Z","@mt":"Project {Name} is of type .NET MAUI Target:Android, migration to .NET MAUI recommends net7.0-android.","Name":"PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:45.7931674Z","@mt":"Project {Name} is of type .NET MAUI Target:iOS, migration to .NET MAUI recommends net7.0-ios.","Name":"PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:45.7970470Z","@mt":"Could not merge incoming TFM update from {Current} to {Next}","@l":"Warning","Current":"net7.0-android","Next":"net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.TargetFrameworkSelector"} +{"@t":"2022-11-15T22:45:45.8313607Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.8314463Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\06ba5f99-2563-42a3-914d-27d7f58df47c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.8316536Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.8326776Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.8327262Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.8327851Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.8328065Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.8471842Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.8472553Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\c9614d8c-9a1d-4696-a080-fedfb8ff16c2\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.8474439Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.8482790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.8483120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.8483614Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.8483817Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.8490259Z","@mt":"Skip minimum dependency check because .NET MAUI support multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:45.8500807Z","@mt":"Project {Name} is of type .NET MAUI Target:Android, migration to .NET MAUI recommends net7.0-android.","Name":"PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:45.8516231Z","@mt":"Project {Name} is of type .NET MAUI Target:iOS, migration to .NET MAUI recommends net7.0-ios.","Name":"PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:45.8535646Z","@mt":"Could not merge incoming TFM update from {Current} to {Next}","@l":"Warning","Current":"net7.0-android","Next":"net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.TargetFrameworkSelector"} +{"@t":"2022-11-15T22:45:45.8779604Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.8780526Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4b098295-46a0-4f72-be6d-7d377725e5bc\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.8785912Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4b098295-46a0-4f72-be6d-7d377725e5bc\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.8787328Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.8794217Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.9071551Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.9077378Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.9431077Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.9433330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\54b215f2-b7ce-4959-a499-09a563855285\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.9447542Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\54b215f2-b7ce-4959-a499-09a563855285\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.9451053Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:45.9486679Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.0416958Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.0428617Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.0449769Z","@mt":"Skip minimum dependency check because Windows App SDK cannot work with targets lower than already recommended TFM.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:46.0467081Z","@mt":"Recommending Windows TFM {TFM} because the project either has Windows-specific dependencies or builds to a WinExe","TFM":"net7.0-windows10.0.19041","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsSdkTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:46.0875945Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.0878118Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4fe0f47e-68c6-409a-8043-8940ebf3a5c0\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.0885360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.0911648Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.0912985Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.1259227Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.1261074Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9feccb8f-3b8b-47fa-9d46-53448f20e257\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.1266280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.1285420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.1286480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.1319280Z","@mt":"Skip minimum dependency check because .NET MAUI support multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:46.1358019Z","@mt":"Recommending executable TFM {TFM} because the project builds to an executable","TFM":"net7.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.ExecutableTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:46.1404349Z","@mt":"Project {Name} is of type .NET MAUI Target:Android, migration to .NET MAUI recommends net7.0-android.","Name":"PlantLady.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:46.1454088Z","@mt":"Project {Name} is of type .NET MAUI Target: MAUI head, migration to .NET MAUI requires to be multiplatform","Name":"PlantLady.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:46.1836667Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.1838812Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\01717280-e91f-43e3-afd6-86145fcafef4\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.1845692Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.1934302Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.1935933Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.2338963Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.2340567Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0a66f099-f056-4586-ae32-6ee8b75dc11d\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.2344586Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.2373332Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.2374464Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.2390416Z","@mt":"Skip minimum dependency check because .NET MAUI support multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:46.2429421Z","@mt":"Recommending executable TFM {TFM} because the project builds to an executable","TFM":"net7.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.ExecutableTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:46.2472670Z","@mt":"Project {Name} is of type .NET MAUI Target:iOS, migration to .NET MAUI recommends net7.0-ios.","Name":"PlantLady.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:46.2530436Z","@mt":"Project {Name} is of type .NET MAUI Target: MAUI head, migration to .NET MAUI requires to be multiplatform","Name":"PlantLady.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:46.2584527Z","@mt":"Could not merge incoming TFM update from {Current} to {Next}","@l":"Warning","Current":"net7.0-ios","Next":"net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.TargetFrameworkSelector"} +{"@t":"2022-11-15T22:45:46.3059324Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.3061814Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\b46fb197-9f01-4464-8c99-5d9ee0014cf9\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.3066234Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.3100216Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.3101629Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.3104512Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.3105633Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.3729684Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.3731807Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\272a3d95-a5dd-42b9-8b7b-5fe9dc7408db\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.3737005Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.3778188Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.3779959Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.3782549Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.3783886Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.3812070Z","@mt":"Skip minimum dependency check because .NET MAUI support multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:46.3848432Z","@mt":"Project {Name} is of type .NET MAUI Target:Android, migration to .NET MAUI recommends net7.0-android.","Name":"PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:46.3911976Z","@mt":"Project {Name} is of type .NET MAUI Target:iOS, migration to .NET MAUI recommends net7.0-ios.","Name":"PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:46.3961860Z","@mt":"Could not merge incoming TFM update from {Current} to {Next}","@l":"Warning","Current":"net7.0-android","Next":"net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.TargetFrameworkSelector"} +{"@t":"2022-11-15T22:45:46.4399100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.4402640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\dd6a13dc-a52a-4f2b-9bc5-f3faa6903bcd\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.4408385Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.4451044Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.4452667Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.4455608Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.4456625Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.4815443Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.4816610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\4d0200d8-5566-4da5-b2a3-7e34675cdbce\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.4819982Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.4837475Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.4838118Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.4838898Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.4839252Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.4884742Z","@mt":"Skip minimum dependency check because .NET MAUI support multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:46.4902510Z","@mt":"Project {Name} is of type .NET MAUI Target:Android, migration to .NET MAUI recommends net7.0-android.","Name":"PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:46.4919839Z","@mt":"Project {Name} is of type .NET MAUI Target:iOS, migration to .NET MAUI recommends net7.0-ios.","Name":"PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:46.4945522Z","@mt":"Could not merge incoming TFM update from {Current} to {Next}","@l":"Warning","Current":"net7.0-android","Next":"net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.TargetFrameworkSelector"} +{"@t":"2022-11-15T22:45:46.5149483Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.5150154Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2a50ee41-7619-43a0-99cc-e9da24d0f6b9\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.5153594Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\2a50ee41-7619-43a0-99cc-e9da24d0f6b9\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.5154460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.5158378Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.5303317Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.5307431Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.5659090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.5661001Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\885e1e93-45b8-4c46-b707-e4ff74b29565\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.5670391Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\885e1e93-45b8-4c46-b707-e4ff74b29565\\project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.5672952Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETCoreApp,Version=v7.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.5684539Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for net7.0-windows10.0.19041...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.6293835Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.6304136Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-windows10.0.19041.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.6343226Z","@mt":"Skip minimum dependency check because Windows App SDK cannot work with targets lower than already recommended TFM.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:46.6381629Z","@mt":"Recommending Windows TFM {TFM} because the project either has Windows-specific dependencies or builds to a WinExe","TFM":"net7.0-windows10.0.19041","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsSdkTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:46.6849989Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.6852842Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\af8555e1-477f-41ba-b409-e5283f06f93c\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.6857989Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.6879028Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.6880815Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.7269224Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.7271161Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7f48efd1-d3c3-49e8-bb06-109e068e520a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.7276310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.7291817Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.7292747Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.7308255Z","@mt":"Skip minimum dependency check because .NET MAUI support multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:46.7340082Z","@mt":"Recommending executable TFM {TFM} because the project builds to an executable","TFM":"net7.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.ExecutableTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:46.7381084Z","@mt":"Project {Name} is of type .NET MAUI Target:Android, migration to .NET MAUI recommends net7.0-android.","Name":"PlantLady.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:46.7447843Z","@mt":"Project {Name} is of type .NET MAUI Target: MAUI head, migration to .NET MAUI requires to be multiplatform","Name":"PlantLady.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:46.7902590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.7904470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\7e9bccea-bcd1-4b3c-bcc2-334d3672c626\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.7908866Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.7925052Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.7926169Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.8316819Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.8319229Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\30ab2d97-673f-4268-9ac8-1e885da48359\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.8325537Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.8376578Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.8378967Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.8409158Z","@mt":"Skip minimum dependency check because .NET MAUI support multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:46.8444264Z","@mt":"Recommending executable TFM {TFM} because the project builds to an executable","TFM":"net7.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.ExecutableTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:46.8488712Z","@mt":"Project {Name} is of type .NET MAUI Target:iOS, migration to .NET MAUI recommends net7.0-ios.","Name":"PlantLady.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:46.8538129Z","@mt":"Project {Name} is of type .NET MAUI Target: MAUI head, migration to .NET MAUI requires to be multiplatform","Name":"PlantLady.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:46.8578317Z","@mt":"Could not merge incoming TFM update from {Current} to {Next}","@l":"Warning","Current":"net7.0-ios","Next":"net7.0-android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.TargetFrameworkSelector"} +{"@t":"2022-11-15T22:45:46.8987219Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.8989155Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\3eb9e847-bec4-4ebc-8afa-cde803c998fd\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.8993315Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.9039052Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.9040734Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.9043922Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.9044953Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.9477903Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.9480043Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\6c0098af-f069-4b2e-9c29-de4fe660196a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.9485960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.9525365Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.9526644Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.9529598Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.9530665Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:46.9566988Z","@mt":"Skip minimum dependency check because .NET MAUI support multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:46.9613460Z","@mt":"Project {Name} is of type .NET MAUI Target:Android, migration to .NET MAUI recommends net7.0-android.","Name":"PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:46.9661260Z","@mt":"Project {Name} is of type .NET MAUI Target:iOS, migration to .NET MAUI recommends net7.0-ios.","Name":"PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:46.9707511Z","@mt":"Could not merge incoming TFM update from {Current} to {Next}","@l":"Warning","Current":"net7.0-android","Next":"net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.TargetFrameworkSelector"} +{"@t":"2022-11-15T22:45:47.0084219Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:47.0086354Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\9b38a21c-1a78-46e4-916e-e210dc66e8fb\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:47.0091446Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:47.0114211Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:47.0115055Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:47.0116435Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:47.0116994Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:47.0453955Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 12 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:47.0455889Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file C:\\Users\\Sweeky Satpathy\\AppData\\Local\\Temp\\dotnet-ua\\restores\\0b8319d6-a8ea-4ca6-8dbd-a65acebe095a\\project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:47.0460416Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:47.0485347Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:47.0486212Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:47.0487635Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:47.0488222Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"} +{"@t":"2022-11-15T22:45:47.0523455Z","@mt":"Skip minimum dependency check because .NET MAUI support multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:47.0562323Z","@mt":"Project {Name} is of type .NET MAUI Target:Android, migration to .NET MAUI recommends net7.0-android.","Name":"PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:47.0603306Z","@mt":"Project {Name} is of type .NET MAUI Target:iOS, migration to .NET MAUI recommends net7.0-ios.","Name":"PlantLady.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"} +{"@t":"2022-11-15T22:45:47.0643458Z","@mt":"Could not merge incoming TFM update from {Current} to {Next}","@l":"Warning","Current":"net7.0-android","Next":"net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.TargetFrameworkSelector"} +{"@t":"2022-11-15T22:45:47.0699553Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Finalize upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:47.0744386Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Finalize upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:47.0745356Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.FinalizeSolutionStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:47.0753574Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Finalize upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.FinalizeSolutionStep"} +{"@t":"2022-11-15T22:45:47.0819939Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Finalize upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.FinalizeSolutionStep"} +{"@t":"2022-11-15T22:45:47.0865859Z","@mt":"No applicable upgrade steps found","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"} +{"@t":"2022-11-15T22:45:47.0873801Z","@mt":"Upgrade has completed. Please review any changes.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Cli.ConsoleUpgrade"} +{"@t":"2022-11-15T22:45:47.8250878Z","@mt":"The Upgrade Report is generated at C:\\code\\PlantLady\\UpgradeReport.sarif","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Cli.ConsoleUpgrade"} +{"@t":"2022-11-15T22:45:48.7315220Z","@mt":"Hosting started","@l":"Debug","EventId":{"Id":2,"Name":"Started"},"SourceContext":"Microsoft.Extensions.Hosting.Internal.Host"} +{"@t":"2022-11-15T22:45:48.7366486Z","@mt":"Hosting stopping","@l":"Debug","EventId":{"Id":3,"Name":"Stopping"},"SourceContext":"Microsoft.Extensions.Hosting.Internal.Host"} +{"@t":"2022-11-15T22:45:48.7385432Z","@mt":"Hosting stopped","@l":"Debug","EventId":{"Id":4,"Name":"Stopped"},"SourceContext":"Microsoft.Extensions.Hosting.Internal.Host"} +{"@t":"2022-11-15T22:45:48.7446617Z","@mt":"{Name} extension is unloading","@l":"Debug","Name":"UA_NuGet6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:45:48.7449343Z","@mt":"{Name} extension is unloading","@l":"Debug","Name":"UA_BinaryAnalysis6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:45:48.7449895Z","@mt":"{Name} extension is unloading","@l":"Debug","Name":"UA_Default6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:45:48.7450155Z","@mt":"{Name} extension is unloading","@l":"Debug","Name":"UA_try-convert6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:45:48.7450359Z","@mt":"{Name} extension is unloading","@l":"Debug","Name":"UA_VB6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:45:48.7450626Z","@mt":"{Name} extension is unloading","@l":"Debug","Name":"UA_Web6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:45:48.7450857Z","@mt":"{Name} extension is unloading","@l":"Debug","Name":"UA_windows6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:45:48.7451085Z","@mt":"{Name} extension is unloading","@l":"Debug","Name":"UA_MAUI6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"} +{"@t":"2022-11-15T22:45:48.7451279Z","@mt":"{Name} extension is unloading","@l":"Debug","Name":"UA_WCFUpdater6c08d5babd434bb2b4359de8eceb9383","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}